mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
Font to fork (#420)
* Switch FontAwesome CDN to ForkAwesome * Converted font-awesome icons to fork-awesome * converted icons to forkawesome * Converted folder icon to fork-awesome icon * Update tags.html * Update config.toml
This commit is contained in:
committed by
GitHub
parent
0fb4eafa63
commit
6c97691f5e
@@ -73,32 +73,32 @@ disqusShortname = "yourdiscussshortname"
|
|||||||
|
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Github"
|
name = "Github"
|
||||||
icon = "fab fa-github"
|
icon = "fa fa-github"
|
||||||
weight = 1
|
weight = 1
|
||||||
url = "https://github.com/johndoe/"
|
url = "https://github.com/johndoe/"
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Gitlab"
|
name = "Gitlab"
|
||||||
icon = "fab fa-gitlab"
|
icon = "fa fa-gitlab"
|
||||||
weight = 2
|
weight = 2
|
||||||
url = "https://gitlab.com/johndoe/"
|
url = "https://gitlab.com/johndoe/"
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Twitter"
|
name = "Twitter"
|
||||||
icon = "fab fa-twitter"
|
icon = "fa fa-twitter"
|
||||||
weight = 3
|
weight = 3
|
||||||
url = "https://twitter.com/johndoe/"
|
url = "https://twitter.com/johndoe/"
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "LinkedIn"
|
name = "LinkedIn"
|
||||||
icon = "fab fa-linkedin"
|
icon = "fa fa-linkedin"
|
||||||
weight = 4
|
weight = 4
|
||||||
url = "https://www.linkedin.com/in/johndoe/"
|
url = "https://www.linkedin.com/in/johndoe/"
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "Medium"
|
name = "Medium"
|
||||||
icon = "fab fa-medium"
|
icon = "fa fa-medium"
|
||||||
weight = 5
|
weight = 5
|
||||||
url = "https://medium.com/@johndoe"
|
url = "https://medium.com/@johndoe"
|
||||||
[[params.social]]
|
[[params.social]]
|
||||||
name = "RSS"
|
name = "RSS"
|
||||||
icon = "fas fa-rss"
|
icon = "fa fa-rss"
|
||||||
weight = 6
|
weight = 6
|
||||||
url = "https://myhugosite.com/index.xml"
|
url = "https://myhugosite.com/index.xml"
|
||||||
rel = "alternate"
|
rel = "alternate"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<link href="https://fonts.googleapis.com/css?family=Lato:400,700%7CMerriweather:300,700%7CSource+Code+Pro:400,700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700%7CMerriweather:300,700%7CSource+Code+Pro:400,700&display=swap" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css" integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.css" integrity="sha256-JEhNp+O24k1/UR+4Os54SetU/6ugBQsDuwlyckeN5aA=" crossorigin="anonymous">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha256-l85OmPOjvil/SOvVt3HnSSjzF1TUMyT9eV0c2BzEGzU=" crossorigin="anonymous" />
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha256-l85OmPOjvil/SOvVt3HnSSjzF1TUMyT9eV0c2BzEGzU=" crossorigin="anonymous" />
|
||||||
|
|
||||||
{{ if .Site.IsServer }}
|
{{ if .Site.IsServer }}
|
||||||
|
|||||||
@@ -5,11 +5,11 @@
|
|||||||
</a>
|
</a>
|
||||||
{{ if or .Site.Menus.main .Site.IsMultiLingual }}
|
{{ if or .Site.Menus.main .Site.IsMultiLingual }}
|
||||||
<span id="dark-mode-toggle" class="float-right">
|
<span id="dark-mode-toggle" class="float-right">
|
||||||
<i class="fas fa-adjust fa-fw"></i>
|
<i class="fa fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
</span>
|
</span>
|
||||||
<input type="checkbox" id="menu-toggle" />
|
<input type="checkbox" id="menu-toggle" />
|
||||||
<label class="menu-button float-right" for="menu-toggle">
|
<label class="menu-button float-right" for="menu-toggle">
|
||||||
<i class="fas fa-bars fa-fw"></i>
|
<i class="fa fa-bars fa-fw" aria-hidden="true"></i>
|
||||||
</label>
|
</label>
|
||||||
<ul class="navigation-list">
|
<ul class="navigation-list">
|
||||||
{{ with .Site.Menus.main}}
|
{{ with .Site.Menus.main}}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<div class="categories">
|
<div class="categories">
|
||||||
<i class="fas fa-folder"></i>
|
<i class="fa fa-folder" aria-hidden="true"></i>
|
||||||
{{- range $index, $el := . -}}
|
{{- range $index, $el := . -}}
|
||||||
{{- if gt $index 0 }}
|
{{- if gt $index 0 }}
|
||||||
<span class="separator">•</span>
|
<span class="separator">•</span>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<div class="tags">
|
<div class="tags">
|
||||||
<i class="fas fa-tag"></i>
|
<i class="fa fa-tag" aria-hidden="true"></i>
|
||||||
{{- range $index, $el := . -}}
|
{{- range $index, $el := . -}}
|
||||||
{{- if gt $index 0 }}
|
{{- if gt $index 0 }}
|
||||||
<span class="separator">•</span>
|
<span class="separator">•</span>
|
||||||
|
|||||||
@@ -11,13 +11,13 @@
|
|||||||
<div class="post-meta">
|
<div class="post-meta">
|
||||||
<div class="date">
|
<div class="date">
|
||||||
<span class="posted-on">
|
<span class="posted-on">
|
||||||
<i class="fas fa-calendar"></i>
|
<i class="fa fa-calendar" aria-hidden="true"></i>
|
||||||
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
||||||
{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
||||||
</time>
|
</time>
|
||||||
</span>
|
</span>
|
||||||
<span class="reading-time">
|
<span class="reading-time">
|
||||||
<i class="fas fa-clock"></i>
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
||||||
{{ i18n "reading_time" .ReadingTime }}
|
{{ i18n "reading_time" .ReadingTime }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user