mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-05 11:16:41 -07:00
Initial Version
This commit is contained in:
commit
76ee2dd12c
91 changed files with 7690 additions and 0 deletions
14
themes/hyde-x/layouts/_default/list.html
Normal file
14
themes/hyde-x/layouts/_default/list.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
{{ partial "head.html" . }}
|
||||
<div class="content container">
|
||||
<ul class="posts">
|
||||
{{ range .Data.Pages }}
|
||||
<li><a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
{{ if isset .Params "categories" }}
|
||||
·
|
||||
{{ range .Params.categories }}<a class="label" href="{{ "/categories/" | absURL }}{{ . | urlize }}">{{ . }}</a>{{ end }}
|
||||
{{ end }}</span>
|
||||
· <time>{{ .Date.Format "Jan 2, 2006" }}</time></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ partial "foot.html" . }}
|
8
themes/hyde-x/layouts/_default/single.html
Normal file
8
themes/hyde-x/layouts/_default/single.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{{ partial "head.html" . }}
|
||||
<div class="content container">
|
||||
<div class="post">
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
{{ partial "foot.html" . }}
|
Loading…
Add table
Add a link
Reference in a new issue