forked from 00dani/lemoncurry
17 lines
426 B
HTML
17 lines
426 B
HTML
{% extends 'lemoncurry/layout.html' %}
|
|
{% load shorturl static %}
|
|
|
|
{% block head %}
|
|
<link rel="amphtml" href="{{ entry.amp_url }}" />
|
|
<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="entry">
|
|
{% include 'entries/h-entry.html' %}
|
|
</div>
|
|
{% endblock %}
|