Giter Club home page Giter Club logo

Comments (4)

jcouturier avatar jcouturier commented on July 19, 2024 1

@graker Well... yes, why don't I?! :)
I didn't know that was an option. I'll just be over here re-reading all the docs.

(thank you).

from blog-plugin.

daftspunk avatar daftspunk commented on July 19, 2024

The default.htm partial is fixed, so other developers know exactly where the component starts when called by the {% component %} tag.

The best option would be to have the default partial call your custom one, for example, inside default.htm:

{% partial __SELF__ ~ '::custom' %}

from blog-plugin.

jcouturier avatar jcouturier commented on July 19, 2024

For those looking for this same answer, here's what I did in order to use a custom post partial.
For my purposes, I not only wanted a custom post partial, but I wanted different post partials for each category.

Here's what my \components\posts\default.htm looks like:

{% set post = __SELF__.post %}

{% if post.categories[0].slug == 'lemon' %}
    {% partial "lemon-post" post=post %}
{% else %}
    {% partial "lime-post" post=post %}
{% endif %}

Then I have two partials, lemon-post.htm and lime-post.htm.

If you only want one custom post partial, then your \components\posts\default.htm will look like so:

{% set post = __SELF__.post %}
{% partial "yourpartialname" post=post %}

This works, but I still find editing \components\posts\default.htm this way to be rather hacky. If I'm only saving my /theme/ folder in git, now I have modifications outside of my git repo that just make things messy.

from blog-plugin.

graker avatar graker commented on July 19, 2024

Hi, @jcouturier why don't you just override default.htm partial in your theme? Just create blogPost (or whatever name your component has) directory in your theme/partials and put default.htm there. Then this overridden file will be used. See this doc page for more info: https://octobercms.com/docs/cms/components#overriding-partials

from blog-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.