added privacy policy
This commit is contained in:
parent
c8698d8c80
commit
26cd9f0bea
16 changed files with 285 additions and 112 deletions
|
@ -12,7 +12,9 @@
|
|||
</header>
|
||||
{{.Content}}
|
||||
</section>
|
||||
<h1>latest <a href="{{ "/blog" | relURL }}">posts</a></h1>
|
||||
<span class="section-header">latest
|
||||
<a href="{{ "/blog" | relURL }}">posts</a>
|
||||
</span>
|
||||
<section class="section-articles">
|
||||
{{ range first 2 (where .Site.RegularPages "Type" "post") }}
|
||||
<a href="{{ .Permalink }}">
|
||||
|
@ -26,13 +28,15 @@
|
|||
<p>{{ . }}</p>
|
||||
{{ end }}
|
||||
{{ with .Params.featured_image }}
|
||||
<img src="{{ . | relURL }}">
|
||||
<img src="{{ . | relURL }}" alt="">
|
||||
{{ end }}
|
||||
</article>
|
||||
</a>
|
||||
{{ end }}
|
||||
</section>
|
||||
<h1>latest <a href="{{ "/projects" | relURL }}">projects</a></h1>
|
||||
<span class="section-header">latest
|
||||
<a href="{{ "/projects" | relURL }}">projects</a>
|
||||
</span>
|
||||
<section class="section-projects">
|
||||
{{ range first 3 (where .Site.RegularPages "Type" "project") }}
|
||||
<a href="{{ .Permalink }}">
|
||||
|
@ -40,7 +44,7 @@
|
|||
<h1>{{ .Title }}</h1>
|
||||
<p class="meta" title="last change: {{ .Date.Format "2 Jan 2006" }}">{{ with .Params.activetime }}<span class="date">{{ . }}</span>{{ end }} {{ with .Params.status }}<span class="status">{{ . }}</span>{{ end }}</p>
|
||||
{{ with .Description }}<p>{{ . }}</p>{{ end }}
|
||||
<img {{ with .Params.featured_image }}src="{{ . | relURL }}"{{ end }}>
|
||||
<img {{ with .Params.featured_image }}src="{{ . | relURL }}"{{ end }} alt="">
|
||||
</article>
|
||||
</a>
|
||||
{{ end }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue