This commit is contained in:
parent
ab892fa850
commit
529dae19ef
3 changed files with 18 additions and 0 deletions
|
@ -9,6 +9,8 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
recursive: true
|
||||||
- name: Add key
|
- name: Add key
|
||||||
run: |
|
run: |
|
||||||
mkdir $HOME/.ssh && \
|
mkdir $HOME/.ssh && \
|
||||||
|
|
|
@ -6,6 +6,10 @@ theme = "agnes-hugo-theme"
|
||||||
[params]
|
[params]
|
||||||
dateFormat = "Jan 2, 2023"
|
dateFormat = "Jan 2, 2023"
|
||||||
authorName = "Bella"
|
authorName = "Bella"
|
||||||
|
Title = "Bellas Keys"
|
||||||
|
Description = "Your Website Description"
|
||||||
|
Image = "https://example.com/image.jpg"
|
||||||
|
Favicon = "https://example.com/favicon.png"
|
||||||
|
|
||||||
[menu]
|
[menu]
|
||||||
[[menu.external]]
|
[[menu.external]]
|
||||||
|
|
|
@ -7,6 +7,18 @@
|
||||||
{{ $title := print .Site.Title " | " .Title }}
|
{{ $title := print .Site.Title " | " .Title }}
|
||||||
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
||||||
<title>{{ $title }}</title>
|
<title>{{ $title }}</title>
|
||||||
|
{{ with .Site.Params }}
|
||||||
|
<link
|
||||||
|
rel="icon"
|
||||||
|
type="image/png"
|
||||||
|
sizes="16x16 32x32"
|
||||||
|
href="{{ .Favicon }}"
|
||||||
|
/>
|
||||||
|
<meta property="og:title" content="{{ .Title }}" />
|
||||||
|
<meta property="og:description" content="{{ .Description }}" />
|
||||||
|
<meta property="og:image" content="{{ .Image }}" />
|
||||||
|
<meta property="og:url" content="{{ .BaseURL }}" />
|
||||||
|
{{ end }}
|
||||||
<link rel="stylesheet" type="text/css" href="/css/style.css" />
|
<link rel="stylesheet" type="text/css" href="/css/style.css" />
|
||||||
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
|
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Add table
Reference in a new issue