Skip to content
Snippets Groups Projects
post_link.html 360 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">
    
    Tom Wiesing's avatar
    Tom Wiesing committed
        <a href="{{post.url}}" class="title">
            {{post.title}} {{post.subtitle}}
        </a>
    
    Tom Wiesing's avatar
    Tom Wiesing committed
        
    
    Tom Wiesing's avatar
    Tom Wiesing committed
        <div>
            {% assign post = page %}
            {% include post_meta.html %}
        </div>
    
    Tom Wiesing's avatar
    Tom Wiesing committed
    </li>