| layouts/_default/baseof.html | ●●●●● patch | view | raw | blame | history | |
| layouts/_default/list.html | ●●●●● patch | view | raw | blame | history | |
| layouts/partials/footer.html | ●●●●● patch | view | raw | blame | history | |
| layouts/partials/sidebar.html | ●●●●● patch | view | raw | blame | history |
layouts/_default/baseof.html
@@ -2,6 +2,7 @@ <html lang="{{- site.Language.Lang -}}" data-theme="{{- .Site.Params.displayMode -}}"> {{- partial "head.html" . -}} <body> {{- partial "sidebar.html" . -}} <div class="main"> {{ partial "navbar.html" . }} @@ -11,6 +12,7 @@ </div> </div> </div> {{- partial "footer.html" . -}} </body> layouts/_default/list.html
@@ -1,18 +1,19 @@ {{ define "main" }} <div class="archive animated fadeInDown"> <ul class="list-with-title"> {{ range .Data.Pages.GroupByDate "2006" }} <div class="listing-title">{{ .Key }}</div> {{ range .Pages }} <ul class="listing"> <div class="listing-item"> <div class="listing-post"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a> <div class="post-time"><span class="date">{{.Date.Format "Jan 2" }}</span></div> </div> </div> </ul> {{ end }} {{ end }} </div> <div class="archive animated fadeInDown"> <ul class="list-with-title"> {{ range .Data.Pages.GroupByDate "2006" }} <div class="listing-title">{{ .Key }}</div> {{ range .Pages }} <ul class="listing"> <div class="listing-item"> <div class="listing-post"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a> <div class="post-time"><span class="date">{{.Date.Format "Jan 2" }}</span></div> </div> </div> </ul> {{ end }} {{ end }} </ul> </div> {{ end }} layouts/partials/footer.html
@@ -1,6 +1,3 @@ </body> {{ $js := resources.Get "js/jquery.js" }} {{ $secureJS := $js | resources.Minify | resources.Fingerprint }} <script type="text/javascript" src="{{ $secureJS.Permalink }}" integrity="{{ $secureJS.Data.Integrity }}" crossorigin="anonymous"></script> @@ -12,5 +9,3 @@ {{- partial "medium-zoom.html" . -}} {{- partial "math.html" . -}} {{- template "_internal/google_analytics_async.html" . -}} </html> layouts/partials/sidebar.html
@@ -1,25 +1,23 @@ <div class="sidebar animated fadeInDown"> <div class="logo-title"> <div class="title"> <img src="{{ .Site.Params.profilePicture | absURL }}" alt="profile picture"> <h3 title=""><a href="/">{{ .Site.Params.Title }}</a></h3> <div class="description"> <p>{{ .Site.Params.description }}</p> <div class="title"> <img src="{{ .Site.Params.profilePicture | absURL }}" alt="profile picture"> <h3 title=""><a href="/">{{ .Site.Params.Title }}</a></h3> <div class="description"> <p>{{ .Site.Params.description }}</p> </div> </div> </div> </div> <ul class="social-links"> {{ range $item := .Site.Params.socialIcons }} <li> <a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}"> <i class="fa fa-2x {{ $item.icon }}" aria-hidden="true"></i> </a> </li> <li> <a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}"> <i class="fa fa-2x {{ $item.icon }}" aria-hidden="true"></i> </a> </li> {{ end }} </ul> <div class="footer"> <div class="by_farbox">© {{ .Site.Params.author }} {{ now.Format "2006"}} </div> </div> </div> </div> </div>