A fork of hyde, the static site generation.
Some patches will be pushed upstream.
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.
|
- ---
- extends: base.j2
- default_block: main
- title: BASIC - A hyde website
- description: Home page for the BASIC hyde template
- ---
-
- {% from "macros.j2" import render_excerpt with context %}
- <section class="blog_excerpt">
- {% set latest = site.content.walk_resources_sorted_by_time()|first %}
-
- {% if latest -%}
- {{ render_excerpt(latest, 'post') }}
-
- <a class="button white medium"
- href="{{ content_url(latest.url) }}">Read more…</a>
-
- {%- endif %}
-
- </section>
|