update blog
This commit is contained in:
19
templates/blog-amis.html
Normal file
19
templates/blog-amis.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "base.html" %}
|
||||
{% import 'macros/card.html' as macro_card -%}
|
||||
|
||||
{% block content %}
|
||||
{% for page in section.pages %}
|
||||
<article class="media note p-4" >
|
||||
<a href="{{ page.extra.url }}" class="" style="width: 100%">
|
||||
<div class="media-content media-flex" style="overflow-y: clip;">
|
||||
<h2 class="title is-2">{{ page.title }}</h2>
|
||||
<div class="content has-text-justified">
|
||||
{{ page.summary | markdown | safe }}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</article>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user