Merge pull request #46 from softinio/update-theme-102022

Update theme
This commit is contained in:
Salar Rahmanian 2022-10-11 19:14:58 -07:00 committed by GitHub
commit 471fa2f035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 52 additions and 7 deletions

View file

@ -17,7 +17,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.74.2'
hugo-version: '0.104.3'
extended: true
- name: Configure AWS Credentials

2
.gitignore vendored
View file

@ -2,3 +2,5 @@
.DS_Store
/resources/_gen/
/result
.hugo_build.lock

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "themes/hugo-clarity"]
path = themes/hugo-clarity
url = git@github.com:softinio/hugo-clarity.git

View file

@ -3,7 +3,6 @@ title = "Salar Rahmanian"
author = "Salar Rahmanian"
enableRobotsTXT = true
enableEmoji = true
theme = "hugo-clarity"
paginate = 10
[markup]
@ -89,3 +88,6 @@ gzip = false
[[deployment.matchers]]
pattern = "^.+\\.(html|xml|json)$"
gzip = true
[[module.imports]]
path = "github.com/softinio/hugo-clarity"

View file

@ -19,5 +19,5 @@ As a long term Vim user and Neovim fan I also have started contributing plugins
[Watch my talks](https://watch.softinio.com)
![Salar Rahmanian's Family](/img/SalarRahmanianFamily.jpg)
![Salar Rahmanian Family](/img/SalarRahmanianFamily.jpg)

5
go.mod Normal file
View file

@ -0,0 +1,5 @@
module softinio.com
go 1.18
require github.com/softinio/hugo-clarity v0.0.0-20220804231030-5179510a03ea // indirect

2
go.sum Normal file
View file

@ -0,0 +1,2 @@
github.com/softinio/hugo-clarity v0.0.0-20220804231030-5179510a03ea h1:fJw3f89X83BAkTnwM8rP5lihcw3Z8gSOc3pNso3IRa4=
github.com/softinio/hugo-clarity v0.0.0-20220804231030-5179510a03ea/go.mod h1:FhIE2pdxA/KkNA0FW425TKxr/DWrtS6hNiVZEHIg5oY=

View file

@ -1,3 +1,10 @@
{{- $s := .Site.Params }}
{{ $t := .Site.Title }}
{{- if or .Params.enableMathNotation $s.enableMathNotation }}
{{ partialCached "math" . }}
{{- end }}
{{- $iconsDir := default "icons/" .Site.Params.iconsDir }}
{{- $defaultFooterLogo := printf "%s%s" $iconsDir "apple-touch-icon.png"}}
<footer class = 'footer'>
<div class = 'footer_inner wrap pale'>
<img src = '{{ absURL "softinio.jpg" }}' class = 'icon icon_2 transparent'>

View file

@ -1,3 +1,13 @@
{{- $params := site.Params }}
{{- $separator := default "|" $params.titleSeparator }}
{{- $title := "" }}
{{- if and .Title (ne (trim (lower .Site.Title) "") (trim (lower .Title) "")) }}
{{- if eq .Kind "taxonomy" }}
{{- $title = default .Title ( T (lower .Title) ) }}
{{- else }}
{{- $title = .Title }}
{{- end }}
{{- end }}
<title>{{ if and .Title (ne (trim (lower .Site.Title) "") (trim (lower .Title) "")) }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
<meta charset='utf-8'>
{{ hugo.Generator }}
@ -12,6 +22,27 @@
{{- partial "opengraph.html" . }}
{{- partial "favicon.html" . }}
<link rel='canonical' href='{{ .Permalink }}'>
{{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
<!-- preload assets declaration -->
<!-- preload main css file -->
{{ $styles := partialCached "func/getStylesBundle" . }}
<link rel="preload" href="{{ $styles.Permalink }}" integrity = "{{ $styles.Data.Integrity }}" as="style" crossorigin="anonymous">
<!-- preload main javascript file -->
{{ $bundle := partialCached "func/getJavascriptBundle" . }}
<link rel="preload" href="{{ $bundle.Permalink }}" as="script" integrity=
"{{ $bundle.Data.Integrity }}" crossorigin="anonymous">
<!-- link main css file -->
<link rel="stylesheet" type="text/css" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}" crossorigin="anonymous">
<!-- load all custom css files -->
{{- with $params.customCSS }}
{{- range . -}}
<link rel="stylesheet" href="{{ relURL . }}">
{{- end }}
{{- end }}
<!-- author & description & keywords -->
<meta name="author" content="{{ .Site.Params.author | safeHTML }}" />

@ -1 +0,0 @@
Subproject commit ee665f39448f396068c534f899bbde8dd62b1eb9