Skip to content
Snippets Groups Projects
post_link.html 348 B
Newer Older
  • Learn to ignore specific revisions
  • Tom Wiesing's avatar
    Tom Wiesing committed
    {% comment %}
        Generates a link to a single post. 
        Expects the page representing the post as a 'post' variable. 
    {% endcomment %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    
    
    Tom Wiesing's avatar
    Tom Wiesing committed
    <li class="collection-item">
        <h5>
            <a href="{{post.url}}">
                {{post.title}} {{post.subtitle}}
            </a>
        </h5>
        
        {% assign post = page %}
        {% include post_meta.html %}
    </li>