summaryrefslogtreecommitdiff
path: root/layouts/partials
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-11-17 17:10:16 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-11-17 17:10:16 +0530
commit00ad5932d73fca7ec60acf5a6fa64bab6fed0224 (patch)
tree3dda32d83083abc381780060ac3a65de29d303ef /layouts/partials
first commit
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/head.html20
-rw-r--r--layouts/partials/header.html12
-rw-r--r--layouts/partials/release-wrapper.html3
-rw-r--r--layouts/partials/release.html16
4 files changed, 51 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..b0ea134
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,20 @@
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+ <meta name="author" content={{ .Site.Author.name }}>
+ <meta name="robots" content="index,follow">
+ <meta name="description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}">
+
+ <!--
+ <meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} - {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}">
+ <meta property="og:image" content="{{ .Site.Params.ogImage }}">
+ -->
+ <meta property="og:type" content="website">
+ <meta property="og:site_name" content="{{ .Site.Title }}">
+ <meta property="og:description" content="{{ .Site.Params.projectTitle }} - {{ .Site.Params.projectDescription }}">
+ <meta property="og:url" content="{{ .Permalink }}">
+
+ <link rel="stylesheet" type="text/css" href="/css/styles.css">
+
+ <title>{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} | {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}</title>
+</head>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..d192e56
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,12 @@
+<div id="site-header">
+ <h1>{{ .Site.Params.projectTitle }}</h1>
+ <p>{{ .Site.Params.projectDescription }}</p>
+ <nav>
+ <a href="/" class="{{ if eq .Kind "home"}}active{{ end }}">Home</a>
+ <a href="/releases" class="{{ if eq .Type "releases"}}active{{ end }}">Releases</a>
+ {{ if .Site.Params.gitURL }}<a href="{{ .Site.Params.gitURL }}">Git</a>{{ end }}
+ {{ range .Site.Params.extraNavLinks }}
+ <a href="{{ index . 1 }}" target="_blank">{{ index . 0 }}</a>
+ {{ end }}
+ </nav>
+</div>
diff --git a/layouts/partials/release-wrapper.html b/layouts/partials/release-wrapper.html
new file mode 100644
index 0000000..ecde519
--- /dev/null
+++ b/layouts/partials/release-wrapper.html
@@ -0,0 +1,3 @@
+<div class="release">
+ {{ partial "release.html" . }}
+</div>
diff --git a/layouts/partials/release.html b/layouts/partials/release.html
new file mode 100644
index 0000000..1c5972a
--- /dev/null
+++ b/layouts/partials/release.html
@@ -0,0 +1,16 @@
+<div class="release-info">
+ <p class="release-header"><a href="{{ .RelPermalink }}">{{ .Params.version_name }}</a></p>
+ <p>
+ Release date:
+ <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z05:30" }}">
+ {{ .Date.Format "2" }}{{ if in (slice 1 21 31) .Date.Day}}st{{ else if in (slice 2 22) .Date.Day}}nd{{ else if in (slice 3 23) .Date.Day}}rd{{ else }}th{{ end }}
+ {{ .Date.Format "January" }}
+ {{ .Date.Format "2006" }}
+ </time>
+ <br/>
+ Release name: {{ .Params.version_name }}
+ <br/>
+ Version number: {{ .Params.version_number }}
+ </p>
+</div>
+{{ .Content }}