diff options
-rw-r--r-- | app/TODO | 6 | ||||
-rw-r--r-- | design/templates/details/note.html | 7 |
2 files changed, 6 insertions, 7 deletions
@@ -44,12 +44,6 @@ write build script # notes revamp notes to be like my own personal instagram -''' -2) test urlize with markdown links -3) parse out markdown wrapped links for twitter -4) CSS -6) Write JavaScript to automatically place map on current location -''' --- 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> |