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