lib/gollum/templates/latest_changes.mustache in gollum-5.2.3 vs lib/gollum/templates/latest_changes.mustache in gollum-5.3.0
- old
+ new
@@ -1,19 +1,22 @@
<div id="wiki-wrapper" class="history">
-<div id="head">
- {{>navbar}}
- <h1 class="py-4">{{title}}</h1>
-</div>
+ <div id="head">
+ {{>navbar}}
+ <h1 class="header-title text-center text-md-left py-4">
+ {{title}}
+ </h1>
+ </div>
+
{{>pagination}}
<div id="wiki-history">
<ul class="Box flex-auto">
{{#versions}}
<li class="Box-row Box-row--hover-gray border-top d-flex flex-items-center">
<span class="float-left col-2" id="user-icons">{{>author_template}}</span>
- <span class="flex-auto col-1 text-gray-light">{{date}}</span>
+ <time class="flex-auto col-1 text-gray-light" datetime="{{datetime}}" data-format="{{date_format}}">{{date}}</time>
<span class="flex-auto col-5">{{message}}<br/>
{{#files}}
<span class="flex-auto col-2">{{#renamed}}{{renamed}} -> {{/renamed}}<a href="{{link}}">{{file}}</a></span><br/>
{{/files}}
</span>