|
|
@@ -63,12 +63,12 @@ |
|
|
|
<div class="w3-sidebar w3-animate-right w3-bar-block w3-collapse" id="mySidebar"> |
|
|
|
<button class="w3-bar-item w3-button" onclick="w3_close()"><b>Close</b> ×</button> |
|
|
|
{% set hierarchy = node.rwalk()|list %} |
|
|
|
{% for yeargrp in hierarchy[-1].walk_resources_sorted_by_time()|groupby("meta.created.year")|reverse %} |
|
|
|
{% for yeargrp in hierarchy[-1].walk_resources_sorted_by_time()|groupby("meta.posted.year")|reverse %} |
|
|
|
<div class="w3-dropdown-hover w3-dropdown-click"> |
|
|
|
<button class="w3-button"><b>{{ yeargrp.grouper }}</b> ({{ yeargrp.list|count }}){# font awesome <i class="fa fa-caret-down"></i> #}</button> |
|
|
|
<div class="w3-dropdown-content w3-bar-block"> |
|
|
|
{% for monthgrp in yeargrp.list|groupby("meta.created.month")|reverse %} |
|
|
|
<b><button class="w3-button">{{ monthgrp.list[0].meta.created|date_format('%B') }}{# font awesome <i class="fa fa-caret-down"></i> #}</button></b> |
|
|
|
{% for monthgrp in yeargrp.list|groupby("meta.posted.month")|reverse %} |
|
|
|
<b><button class="w3-button">{{ monthgrp.list[0].meta.posted|date_format('%B') }}{# font awesome <i class="fa fa-caret-down"></i> #}</button></b> |
|
|
|
{% for item in monthgrp.list %} |
|
|
|
<div class="w3-dropdown-click w3-bar-block" style="margin-left: 0.75em;"> |
|
|
|
<a href="{{ itemurl(item) }}" class="no-tufte-underline w3-bar-item w3-button">{{ item.meta.title }}</a> |
|
|
|