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

github.com/jakewies/hugo-theme-codex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.all-contributorsrc27
-rw-r--r--README.md5
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/partials/browse-by-tag.html2
-rw-r--r--layouts/partials/favicon.html1
-rw-r--r--layouts/partials/social-icons.html2
6 files changed, 35 insertions, 4 deletions
diff --git a/.all-contributorsrc b/.all-contributorsrc
index c976b5e..2a510d0 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -150,6 +150,33 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "wilsonehusin",
+ "name": "Wilson E. Husin",
+ "avatar_url": "https://avatars1.githubusercontent.com/u/14004487?v=4",
+ "profile": "http://wilsonehusin.com",
+ "contributions": [
+ "code"
+ ]
+ },
+ {
+ "login": "tommorris",
+ "name": "Tom Morris",
+ "avatar_url": "https://avatars0.githubusercontent.com/u/175?v=4",
+ "profile": "https://tommorris.org/",
+ "contributions": [
+ "code"
+ ]
+ },
+ {
+ "login": "sdil",
+ "name": "Mohamad Fadhil",
+ "avatar_url": "https://avatars0.githubusercontent.com/u/461537?v=4",
+ "profile": "http://twitter.com/sdil",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/README.md b/README.md
index baa0914..fae7042 100644
--- a/README.md
+++ b/README.md
@@ -210,7 +210,7 @@ Check out the [CONTRIBUTORS.md file](https://github.com/jakewies/hugo-theme-code
## Contributors ✨
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
-[![All Contributors](https://img.shields.io/badge/all_contributors-15-orange.svg?style=flat-square)](#contributors-)
+[![All Contributors](https://img.shields.io/badge/all_contributors-18-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -239,6 +239,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
</tr>
<tr>
<td align="center"><a href="https://github.com/jdl031"><img src="https://avatars3.githubusercontent.com/u/1720477?v=4" width="100px;" alt=""/><br /><sub><b>James Lloyd</b></sub></a><br /><a href="https://github.com/jakewies/hugo-theme-codex/commits?author=jdl031" title="Code">💻</a></td>
+ <td align="center"><a href="http://wilsonehusin.com"><img src="https://avatars1.githubusercontent.com/u/14004487?v=4" width="100px;" alt=""/><br /><sub><b>Wilson E. Husin</b></sub></a><br /><a href="https://github.com/jakewies/hugo-theme-codex/commits?author=wilsonehusin" title="Code">💻</a></td>
+ <td align="center"><a href="https://tommorris.org/"><img src="https://avatars0.githubusercontent.com/u/175?v=4" width="100px;" alt=""/><br /><sub><b>Tom Morris</b></sub></a><br /><a href="https://github.com/jakewies/hugo-theme-codex/commits?author=tommorris" title="Code">💻</a></td>
+ <td align="center"><a href="http://twitter.com/sdil"><img src="https://avatars0.githubusercontent.com/u/461537?v=4" width="100px;" alt=""/><br /><sub><b>Mohamad Fadhil</b></sub></a><br /><a href="https://github.com/jakewies/hugo-theme-codex/commits?author=sdil" title="Code">💻</a></td>
</tr>
</table>
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index fa4ba49..75d07a7 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -21,7 +21,7 @@
<meta name="twitter:creator" content="{{ .Site.Params.twitterCreator | default .Site.Params.twitter }}" />
{{ end }}
- <link rel="shortcut icon" type="image/png" href="/favicon.ico" />
+ {{ partial "favicon.html" }}
<!-- Styles -->
{{ block "styles" . }} {{ end }} <!-- Get "style_opts" variable from "styles" block -->
diff --git a/layouts/partials/browse-by-tag.html b/layouts/partials/browse-by-tag.html
index 6ca703d..f08d539 100644
--- a/layouts/partials/browse-by-tag.html
+++ b/layouts/partials/browse-by-tag.html
@@ -1,7 +1,7 @@
<ul class="tags__list">
{{ range $tag, $value := $.Site.Taxonomies.tags }}
<li class="tag__item">
- <a class="tag__link" href="{{ "/tags/" | relLangURL}}{{ $tag | urlize }}">{{ $tag | urlize }} ({{ len $value }})</a>
+ <a class="tag__link" href="{{ "/tags/" | relLangURL}}{{ $tag | urlize }}/">{{ $tag | urlize }} ({{ len $value }})</a>
</li>
{{ end }}
</ul>
diff --git a/layouts/partials/favicon.html b/layouts/partials/favicon.html
new file mode 100644
index 0000000..4f6aa07
--- /dev/null
+++ b/layouts/partials/favicon.html
@@ -0,0 +1 @@
+<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
diff --git a/layouts/partials/social-icons.html b/layouts/partials/social-icons.html
index a527520..d1aa10c 100644
--- a/layouts/partials/social-icons.html
+++ b/layouts/partials/social-icons.html
@@ -5,7 +5,7 @@
{{ range $icons }}
{{ $icon := anchorize . }}
{{ if isset $currentPage.Site.Params $icon }}
- <a class="social-icons__link" title="{{ . }}"
+ <a class="social-icons__link" rel="me" title="{{ . }}"
href="{{ index $currentPage.Site.Params $icon }}"
target="_blank" rel="noopener">
<div class="social-icons__icon" style="background-image: url('{{print "svg/" $icon ".svg" | absURL}}')"></div>