This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/site/themes/beautiful-hexo/layout/partial/post-meta.jade

11 lines
236 B
Text
Raw Normal View History

mixin post_meta(date, tags)
p.post-meta Posted on #{full_date(date, "MMM D YYYY")}
if tags
- tags.each(function(tag) {
= ' · '
a.tag.post-meta(href=url_for(tag.path))= tag.name
- })