2017-10-24 21:31:08 -04:00
|
|
|
{% extends 'lemoncurry/layout.html' %}
|
2017-10-28 21:56:30 -04:00
|
|
|
{% load shorturl static %}
|
|
|
|
|
2018-01-12 22:49:38 -05:00
|
|
|
{% block head %}
|
|
|
|
<link rel="amphtml" href="{{ entry.amp_url }}" />
|
|
|
|
<link rel="shortlink" href="{% shorturl entry %}" />
|
|
|
|
{% endblock %}
|
2017-10-24 21:46:04 -04:00
|
|
|
|
|
|
|
{% block styles %}
|
|
|
|
<link rel="stylesheet" type="text/stylus" href="{% static 'entries/css/h-entry.styl' %}" />
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-10-24 21:31:08 -04:00
|
|
|
{% block main %}
|
2017-12-04 05:43:13 -05:00
|
|
|
<div class="entry">
|
2017-10-24 21:31:08 -04:00
|
|
|
{% include 'entries/h-entry.html' %}
|
2017-10-24 21:46:04 -04:00
|
|
|
</div>
|
2017-10-24 21:31:08 -04:00
|
|
|
{% endblock %}
|