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.
 
 
 

11 lines
455 B

  1. {% macro render_excerpt(res, class=None) %}
  2. {% refer to res.url as post %}
  3. <article {{'class='~class if class }}>
  4. <h3><a href="{{ content_url(res.url) }}">{{ res.meta.title }}</a></h3>
  5. <a href="{{ content_url(res.url) }}">{{ post.image|markdown|typogrify }}</a>
  6. {{ post.excerpt|markdown|typogrify }}
  7. <time datetime="{{ res.meta.created.strftime('%Y-%m-%d') }}">
  8. Posted: {{ res.meta.created.strftime('%a, %d %b %Y') }}
  9. </time>
  10. </article>
  11. {% endmacro %}