feat: update index page styles
parent
2b1fc63ec0
commit
180c9c61d6
@ -1,46 +1,41 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ partial "profile.html" . }}
|
{{ partial "profile.html" . }}
|
||||||
|
|
||||||
<section id="wrapper">
|
<div id="list-page">
|
||||||
<ul id="post-list">
|
|
||||||
{{ $pages := where .Site.RegularPages "Params.hidden" "ne" "true" }}
|
{{ $pages := where .Site.RegularPages "Params.hidden" "ne" "true" }}
|
||||||
{{ $paginator := .Paginate ($pages) }}
|
{{ $paginator := .Paginate ($pages) }}
|
||||||
{{ range $paginator.Pages }}
|
{{ range $paginator.Pages }}
|
||||||
<li>
|
{{ $title := .Title }}
|
||||||
|
{{ $summary := .Summary }}
|
||||||
|
<section class="item">
|
||||||
<div>
|
<div>
|
||||||
<h1 class="title"><a href='{{ .RelPermalink }}'>{{ .Title }}</a></h1>
|
<h1 class="title"><a href='{{ .RelPermalink }}'>{{ $title }}</a></h1>
|
||||||
<div class="dates">{{ .Date.Format "Jan 2" }}</div>
|
<div class="date">{{ .Date.Format "Jan 2" }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>{{ .Summary | plainify | htmlUnescape }}</div>
|
<div class="summary">{{ $summary | plainify | htmlUnescape }}</div>
|
||||||
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
|
|
||||||
|
{{ with .Resources.ByType "image" }}
|
||||||
|
{{ $image := index . 1 }}
|
||||||
|
{{ range . }}
|
||||||
|
{{ if eq .Name "images/cover.png" }}
|
||||||
|
{{ $image = . }}
|
||||||
|
{{ else if eq .Name "images/cover.jpg" }}
|
||||||
|
{{ $image = . }}
|
||||||
|
{{ else if eq .Name "images/cover.jpeg" }}
|
||||||
|
{{ $image = . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
</ul>
|
<div class="cover">
|
||||||
|
<img src="{{ $image.RelPermalink }}" alt="{{ $title }}">
|
||||||
<h1>old</h1>
|
</div>
|
||||||
<ul id="post-list">
|
|
||||||
{{ range where .Paginator.Pages "Params.hidden" "ne" "true" }}
|
|
||||||
{{ $url := replace .Permalink .Site.BaseURL "" }}
|
|
||||||
{{ if ne $url "about/" }}
|
|
||||||
<li>
|
|
||||||
<aside class="dates">{{ .Date.Format "Jan 2" }}</aside>
|
|
||||||
<a href='{{ .Permalink }}'>
|
|
||||||
{{ .Title }}
|
|
||||||
{{ if .Site.Params.enableSummary }}
|
|
||||||
{{ if .Site.Params.useDescriptionReplaceSummary }}
|
|
||||||
<h2>{{ .Description | plainify }}</h2>
|
|
||||||
{{ else }}
|
|
||||||
<h2>{{ .Summary | plainify | htmlUnescape }}</h2>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
|
||||||
</ul>
|
</section>
|
||||||
</section>
|
{{ end }}
|
||||||
|
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -1,16 +1,15 @@
|
|||||||
<header class="profile">
|
<header class="profile">
|
||||||
<section class="wrapper">
|
{{ if .Site.Params.avatarLink }}
|
||||||
{{ if .Site.Params.avatarLink }}
|
|
||||||
<a href="{{ .Site.Params.avatarLink }}">
|
<a href="{{ .Site.Params.avatarLink }}">
|
||||||
<img class="avatar" alt="avatar" src="{{ .Site.BaseURL }}images/avatar.png" />
|
<img class="avatar" alt="avatar" src="{{ .Site.BaseURL }}images/avatar.png" />
|
||||||
</a>
|
</a>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<img class="avatar" alt="avatar" src="{{ .Site.BaseURL }}images/avatar.png" />
|
<img class="avatar" alt="avatar" src="{{ .Site.BaseURL }}images/avatar.png" />
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<h1>{{ .Site.Title }}</h1>
|
<h1>{{ .Site.Title }}</h1>
|
||||||
{{ with .Site.Params.Bio }}
|
|
||||||
<h2>{{ . | markdownify }}</h2>
|
{{ with .Site.Params.Bio }}
|
||||||
{{ end }}
|
<h2>{{ . | markdownify }}</h2>
|
||||||
</section>
|
{{ end }}
|
||||||
</header>
|
</header>
|
Loading…
Reference in New Issue