22
33{% block title %}{{ section.title }}{% endblock %}
44
5+ {% block meta %}
6+ {{ meta_macros::facebook_meta(url=current_url, title=section.title ~ " - AeroRust (ÄR)", type="website", description=section.description, image=get_url(path="images/aerorust-ferris.png")) }}
7+ {{ meta_macros::twitter_meta(title=section.title ~ " - AeroRust (ÄR)", description=section.description, image=get_url(path="images/aerorust-ferris.png")) }}
8+ {% endblock %}
9+
510{% block content %}
611{# < div class ="p-3 mt-3 p-md-4 mb-3 text-bg-light rounded ">
712 < div class ="col-md-8 px-0 ">
@@ -11,7 +16,6 @@ <h2 class="display-6 fst-italic">Title of a longer featured blog post</h1>
1116 < p class ="lead mb-0 "> < a href ="# " class ="fw-bold "> Continue reading...</ a > </ p >
1217 </ div >
1318</ div > #}
14-
1519< div class ="row gx-5 gy-0 mt-3 ">
1620 < div class ="col-md-8 ">
1721 < h3 class ="pb-4 mb-4 border-bottom ">
@@ -23,21 +27,17 @@ <h3 class="pb-4 mb-4 border-bottom">
2327 < h2 class ="blog-post-title mb-1 "> < a href ="{{ post.permalink | safe }} "> {{ post.title }}</ a > </ h2 >
2428 < p class ="blog-post-meta "> {{ post.date | date(format="%B %e, %Y") }} by
2529 {{ authors::comma_separated(authors=post.extra.author) }}
26- {# {% for author in post.extra.author %}
27- {{ author.name }} ( < a href ="https://twitter.com/{{ author.twitter}} " target ="_blank ">
28- < i class ="bi bi-twitter pe-1 "> </ i > @{{ author.twitter }}</ a > |
29- < a href ="https://github.com/{{ author.github}} " target ="_blank "> < i class ="bi bi-github pe-1 "> </ i > {{ author.github }}</ a > ) {% if not loop.last %},{% endif %}
30-
31- {% endfor %} #}
3230 </ p >
3331
3432 < p > {{ post.description }}</ p >
3533
36- {# < blockquote class ="blockquote "> #}
37- < p class ="fst-italic ">
38- "{{ post.content | striptags | truncate(length=300) }}..."
39- </ p >
40- {# </ blockquote > #}
34+ {# < blockquote class ="blockquote "> #}
35+ {% if post.extra.show_quote %}
36+ < p class ="fst-italic ">
37+ "{{ post.content | striptags | truncate(length=300) }}..."
38+ </ p >
39+ {% endif %}
40+ {# </ blockquote > #}
4141 </ article >
4242 {% endfor -%}
4343 {% if paginator.number_pagers > 1 -%}
0 commit comments