Lorenzo Dellacà
67344effd0
CSS code was divided in multiple files, however this was not practical for organization since different pages needed different CSS classes one another, that were in most of those CSS files. This commit brings (mostly) everything in one file with a table of contents on top. An exception is made for fonts, that are now in a separate "fonts.css" file, since they contain fundamentally different things. Classes organization is not yet complete, however a great part was done. Next commits will finalize this organization and finish moving classes. Signed-off-by: Lorenzo Dellacà <lorenzo.dellaca@mind-overflow.net>
18 lines
873 B
Handlebars
18 lines
873 B
Handlebars
<article class="{{post_class}}">
|
|
<a class="mind-post-card-big_main" href="{{url}}">
|
|
<img class="mind-post-card-big_feature-image" src="{{img_url feature_image size="m"}}" />
|
|
<header class="mind-post-card-big_header">
|
|
<p class="mind-post-card-big_meta"><span class="mind-post-card-big_tag">{{primary_tag.name}}</span>
|
|
• <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time></p>
|
|
<h3>{{title}}</h3>
|
|
</header>
|
|
<section class="mind-post-card-big_excerpt">
|
|
<p>{{excerpt words="26"}}</p>
|
|
</section>
|
|
<footer class="mind-post-card-big_footer">
|
|
{{primary_author.name}}
|
|
{{#if primary_author.profile_image}}<img class="mind-post-card-big_author-image" src="{{img_url primary_author.profile_image size="xxs"}}" alt="Author image" />{{/if}}
|
|
</footer>
|
|
</a>
|
|
</article>
|