feat: add partial head/custom.html for custom page head elements (#131)

This commit is contained in:
Robert Kaussow 2021-05-19 22:42:57 +02:00 committed by GitHub
parent 98271b1232
commit df901ba968
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 2 deletions

View File

@ -20,6 +20,7 @@ steps:
image: thegeeklab/hugo:0.83.1
commands:
- mkdir exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/hugo-geekdoc
- cp exampleSite/layouts/partials/head/custom.ci.html exampleSite/layouts/partials/head/custom.html
- hugo -s exampleSite/ -b http://localhost/
- name: html-validation
@ -270,6 +271,6 @@ depends_on:
---
kind: signature
hmac: 2c0c709a64128fd42c47d3549184ac29e2225be8de1953fa2e72b63aa0b7e871
hmac: e2ef57c014893437655882116e07f1b8ea211adf60aa479c52113df515f51b58
...

View File

@ -2,7 +2,7 @@
Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
-->
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<svg xmlns="http://www.w3.org/2000/svg" class="svg-sprite">
<symbol id="address-book" viewBox="0 0 448 512">
<path d="M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-68 304H48V48h320v416zM208 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm-89.6 128h179.2c12.4 0 22.4-8.6 22.4-19.2v-19.2c0-31.8-30.1-57.6-67.2-57.6-10.8 0-18.7 8-44.8 8-26.9 0-33.4-8-44.8-8-37.1 0-67.2 25.8-67.2 57.6v19.2c0 10.6 10 19.2 22.4 19.2z"></path>
</symbol>

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 107 KiB

View File

@ -0,0 +1 @@
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; manifest-src 'self'; connect-src 'self'; font-src 'self'; img-src 'self' img.shields.io; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'">

View File

@ -0,0 +1 @@
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; manifest-src 'self'; connect-src 'self'; font-src 'self'; img-src 'self' img.shields.io; script-src 'self' 'unsafe-inline'; style-src 'self'">

View File

@ -7,6 +7,7 @@
{{ partial "head/favicons" . }}
{{ partial "head/others" . }}
{{ partial "head/custom" . }}
</head>
<body itemscope itemtype="https://schema.org/WebPage">

View File

@ -0,0 +1 @@
<!-- You can add custom elements to the page header here. -->