diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-28 15:24:29 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-28 15:24:29 -0500 |
commit | 571edc362652693c61c3a56496152e0e03c51918 (patch) | |
tree | 8d528f3cce6068105e5a6a7e4e92dfea6f850888 /templates/details | |
parent | a30c790edea652494e7481f6798047a3bc1fd4ea (diff) |
links: moved templates to app
Diffstat (limited to 'templates/details')
-rw-r--r-- | templates/details/link.html | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/templates/details/link.html b/templates/details/link.html deleted file mode 100644 index 6ba0619..0000000 --- a/templates/details/link.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends 'base.html' %} -{% load typogrify_tags %} -{%block bodyid%}class="links"{%endblock%} -{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> - <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li> - <li><a href="/links/" title="links" itemprop="url"><span itemprop="title">links</span></a> → </li> - </ul> - <main> - <h2 title="link-title">{{object.title|smartypants|widont|safe}}</h2> - <h3>{{object.url|urlize}}</h3> - <article class="h-entry hentry post--article book" itemscope itemType="http://schema.org/Article"> - {{object.render_description|amp|smartypants|safe}} - <ul>{% for tag in object.tags.all %} - <li><a href="/links/tag/{{tag.slug}}/">{{tag}}</a></li> - {%endfor%}</ul> - </article> -</main> -{% endblock %} - |