Nouvelle mouture du site web de Dylan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- layout: default
- ---
- <div class="wrapper">
- <div class="home">
- {%- if page.title -%}
- <h1 class="page-heading">{{ page.title }}</h1>
- {%- endif -%}
- {{ content }}
- {%- if site.categories[page.tag].size > 0 -%}
- <!-- <h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2> -->
-
- <ul class="post-list row">
- {%- for post in site.categories[page.tag] -%}
- <li class="col-xl-4 col-lg-4 post-card" data-category="{{post.category}}">
- {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
- <!-- <span class="post-meta">{{ post.date | date: date_format }}</span> -->
- <a class="post-link" href="{{ post.url | relative_url }}"><img src="{{post.image}}"/></a>
- <h3>
- <!-- {{ post.title | escape }} -->
- <span class="home-tags">{{post.hometext}}</span>
- </h3>
- {%- if site.show_excerpts -%}
- {{ post.excerpt }}
- {%- endif -%}
- </li>
- {%- endfor -%}
- </ul>
- {%- endif -%}
- </div>
- </div>
|