14 lines
378 B
HTML
14 lines
378 B
HTML
{% extends 'lemoncurry/layout.html' %}
|
|
{% load shorturl static %}
|
|
|
|
{% block head %}<link rel="shortlink" href="{% shorturl entry %}" />{% endblock %}
|
|
|
|
{% block styles %}
|
|
<link rel="stylesheet" type="text/stylus" href="{% static 'entries/css/h-entry.styl' %}" />
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
{% include 'entries/h-entry.html' %}
|
|
</div>
|
|
{% endblock %}
|