Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/monkeyWzr/hugo-theme-cactus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonkeyWzr <monkeywzr@gmail.com>2020-07-19 10:41:11 +0300
committermonkeyWzr <monkeywzr@gmail.com>2020-07-19 10:41:11 +0300
commit710c9a862095acd6a4921f6febe800ba8156d976 (patch)
tree239efe8a9e4d4eb4aaef489bf4633700e87ee889 /layouts/posts
parent2cad386a2c0ea4d2f41686a5ee3b4ba305a6d3a9 (diff)
add nav for mobile; remove header from post page
Diffstat (limited to 'layouts/posts')
-rw-r--r--layouts/posts/single.html125
1 files changed, 72 insertions, 53 deletions
diff --git a/layouts/posts/single.html b/layouts/posts/single.html
index 9a2a6cf..4c2e34a 100644
--- a/layouts/posts/single.html
+++ b/layouts/posts/single.html
@@ -1,60 +1,79 @@
-{{ define "main" }}
-<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
- <header>
- <h1 class="posttitle" itemprop="name headline">
- {{ .Title }}
- </h1>
- <div class="meta">
- {{ if (or (isset .Site "author") (isset .Site "title"))}}
- <span class="author" itemprop="author" itemscope itemtype="http://schema.org/Person">
- <span itemprop="name">
- {{ if isset .Site "author" }}
- {{ .Site.Author }}
- {{ else if isset .Site "title" }}
- {{ .Site.Title }}
- {{ end }}
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+{{ partial "head.html" . }}
+<body class="max-width mx-auto px3 ltr">
+ <div class="content index py4">
+
+ {{ partial "page_nav.html" . }}
+
+ <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
+ <header>
+ <h1 class="posttitle" itemprop="name headline">
+ {{ .Title }}
+ </h1>
+ <div class="meta">
+ {{ if (or (isset .Site "author") (isset .Site "title"))}}
+ <span class="author" itemprop="author" itemscope itemtype="http://schema.org/Person">
+ <span itemprop="name">
+ {{ if isset .Site "author" }}
+ {{ .Site.Author }}
+ {{ else if isset .Site "title" }}
+ {{ .Site.Title }}
+ {{ end }}
+ </span>
</span>
- </span>
- {{ end }}
- <div class="postdate">
- <time datetime="{{ .Date }}" itemprop="datePublished">{{ .Date.Format .Site.Params.dateFormat }}</time>
- {{ if (and .Site.Params.show_updated (ne .Lastmod .Date)) }}
- (Updated: <time datetime="{{ .Lastmod }}" itemprop="dateModified">{{ .Lastmod.Format .Site.Params.dateFormat }}</time>)
{{ end }}
- </div>
- {{ if gt .Params.categories 0 }}
- <div class="article-category">
- <i class="fas fa-archive"></i>
- {{ range $index, $value := .Params.categories }}
- {{ if gt $index 1 }} {{ print ", " }} {{ end }}
- <a class="category-link" href="{{ "/categories/" | relLangURL }}{{ $value | urlize }}">{{ $value }}</a>
+ <div class="postdate">
+ <time datetime="{{ .Date }}" itemprop="datePublished">{{ .Date.Format .Site.Params.dateFormat }}</time>
+ {{ if (and .Site.Params.show_updated (ne .Lastmod .Date)) }}
+ (Updated: <time datetime="{{ .Lastmod }}" itemprop="dateModified">{{ .Lastmod.Format .Site.Params.dateFormat }}</time>)
{{ end }}
+ </div>
+ {{ if gt .Params.categories 0 }}
+ <div class="article-category">
+ <i class="fas fa-archive"></i>
+ {{ range $index, $value := .Params.categories }}
+ {{ if gt $index 1 }} {{ print ", " }} {{ end }}
+ <a class="category-link" href="{{ "/categories/" | relLangURL }}{{ $value | urlize }}">{{ $value }}</a>
+ {{ end }}
+ </div>
+ {{ end }}
+ {{ if gt .Params.tags 0 }}
+ <div class="article-tag">
+ <i class="fas fa-tag"></i>
+ {{ range $index, $value := .Params.tags }}
+ {{ if gt $index 1 }} {{ print ", " }} {{ end }}
+ <a class="tag-link" href="{{ "/tags/" | relLangURL }}{{ $value | urlize }}" rel="tag">{{ $value }}</a>
+ {{ end }}
+ </div>
+ {{ end }}
</div>
- {{ end }}
- {{ if gt .Params.tags 0 }}
- <div class="article-tag">
- <i class="fas fa-tag"></i>
- {{ range $index, $value := .Params.tags }}
- {{ if gt $index 1 }} {{ print ", " }} {{ end }}
- <a class="tag-link" href="{{ "/tags/" | relLangURL }}{{ $value | urlize }}" rel="tag">{{ $value }}</a>
- {{ end }}
- </div>
+ </header>
+
+ {{ with .Resources.ByType "image" }}
+ <div class="article-gallery">
+ {{ range $index, $value := . }}
+ <a class="gallery-item" href="{{ .RelPermalink }}" rel="gallery_{{ $index }}">
+ <img src="{{ .RelPermalink }}" itemprop="image" />
+ </a>
{{ end }}
</div>
- </header>
-
-{{ with .Resources.ByType "image" }}
- <div class="article-gallery">
- {{ range $index, $value := . }}
- <a class="gallery-item" href="{{ .RelPermalink }}" rel="gallery_{{ $index }}">
- <img src="{{ .RelPermalink }}" itemprop="image" />
- </a>
- {{ end }}
- </div>
-{{ end }}
- <div class="content" itemprop="articleBody">
- {{ .Content}}
+ {{ end }}
+ <div class="content" itemprop="articleBody">
+ {{ .Content}}
+ </div>
+ </article>
+
+ <!-- TODO: Comments -->
+
+ {{ partial "page_nav_mobile.html" . }}
+
+ {{ partial "footer.html" . }}
+
</div>
-</article>
-<!-- TODO: Ccomments -->
-{{ end }} \ No newline at end of file
+</body>
+
+<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
+<script src="/lib/jquery/jquery.min.js"></script>
+<script src="/js/main.js"></script>
+</html>