diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | design/sass/_writing_details.scss | 3 | ||||
-rw-r--r-- | design/templates/details/entry.html | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -1,2 +1,4 @@ ToDo: +make notes sync with notes git repo so I can have same notes online and on laptop. + - start with git to DB diff --git a/design/sass/_writing_details.scss b/design/sass/_writing_details.scss index d940244..85b8c9f 100644 --- a/design/sass/_writing_details.scss +++ b/design/sass/_writing_details.scss @@ -780,6 +780,9 @@ figure.picwide img.picwide { text-decoration: none; color: lighten($body_font, 20); } + a.nb { + color: lighten($body_font, 10); + } @include breakpoint(beta) { margin-bottom: 4em; #wildlife { diff --git a/design/templates/details/entry.html b/design/templates/details/entry.html index c1c4acc..34bc0b3 100644 --- a/design/templates/details/entry.html +++ b/design/templates/details/entry.html @@ -61,7 +61,7 @@ class="{%if t == 1 or t == 3 or t == 5 %}double{%else%}single{%endif%}{%if t == {% for object_list in wildlife_list %} <li class="grouper">{{object_list.grouper}}<ul> {% for object in object_list.list %} - <li><a href="{% url 'sightings:detail' object.ap.slug %}">{{object}}</a></li> + <li><a {%if object.ap.body_markdown%}class="nb"{%endif%} href="{% url 'sightings:detail' object.ap.slug %}">{{object}}</a></li> {% endfor %}</ul> {% endfor %}</ul> </aside> |