completely re-working everything!
This commit is contained in:
parent
2a6fdc1a9c
commit
2266e3ddc5
20 changed files with 24 additions and 516 deletions
|
@ -0,0 +1,17 @@
|
|||
{{ partial "header.html" . }}
|
||||
|
||||
<div class="header">
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h2>{{ .Site.Params.subtitle }}</h2>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
{{ range ( .Paginate (where .Site.RegularPages "Type" "post")).Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
|
||||
{{ partial "pagination.html" . }}
|
||||
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
|
@ -1,4 +1,4 @@
|
|||
<head>
|
||||
<title>{{ block "title" . }}{{ if .IsHome }} {{ .Site.Title }} {{ else }} {{ .Title }} - {{ .Site.Title }} {{ end }}{{ end }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/bootstrap.min.css"/>
|
||||
</head>
|
12
themes/hacksite/static/css/bootstrap.min.css
vendored
Normal file
12
themes/hacksite/static/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3
themes/hacksite/static/css/style.css
Normal file
3
themes/hacksite/static/css/style.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
h1 {
|
||||
color: deepskyblue;
|
||||
}
|
|
@ -11,8 +11,8 @@ features = []
|
|||
min_version = "0.41.0"
|
||||
|
||||
[author]
|
||||
name = "hack13"
|
||||
homepage = "https://hack13.me/"
|
||||
name = ""
|
||||
homepage = ""
|
||||
|
||||
# If porting an existing theme
|
||||
[original]
|
||||
|
|
Reference in a new issue