diff options
author | luxagraf <sng@luxagraf.net> | 2016-02-21 09:22:18 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-02-21 09:22:18 -0500 |
commit | e0076805adfcbc4bce3d337974c1bbb9e4c7fbb9 (patch) | |
tree | be660312cbce3ed8e8b9940eb0ddd8df6b1aa4a5 /design | |
parent | 4f3b71e3a56d513d29d0c1c0261addcfb06fe63c (diff) |
started work on a notes app, fixed breadcrumbs and push prelimary
version to the testing server. Haven't used since. Not sure what that
means.
Diffstat (limited to 'design')
-rw-r--r-- | design/templates/details/note.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/design/templates/details/note.html b/design/templates/details/note.html index c4847ec..d866637 100644 --- a/design/templates/details/note.html +++ b/design/templates/details/note.html @@ -15,7 +15,12 @@ {% block bodyid %}class="notes--permalink" id="archive-{% if month %}{{month|month_number_to_name}}{%endif%}{{year}}"{%endblock%} -{% block primary %} +{% block primary %}<ul class="bl crumbs" 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="/field-notes/" itemprop="url"><span itemprop="title">Field Notes</span></a> →</li> + <li><a href="/field-notes/{{object.pub_date|date:"Y"}}/">{{object.pub_date|date:"Y"}}</a> →</li> + <li itemprop="title"><a href="/field-notes/{{object.pub_date|date:"Y"}}/{{object.pub_date|date:"m"}}/">{{object.pub_date|date:"F"}}</a></li> + </ul> <main role="main"> <article class="h-entry post--article"> <h1 class="p-name note--title">{{object.title|safe|amp|smartypants}}</h1> |