update
All checks were successful
Hugo / build (push) Successful in 18s

This commit is contained in:
brookee 2024-02-29 23:09:23 -05:00
parent ab892fa850
commit 529dae19ef
3 changed files with 18 additions and 0 deletions

View file

@ -9,6 +9,8 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
recursive: true
- name: Add key
run: |
mkdir $HOME/.ssh && \

View file

@ -6,6 +6,10 @@ theme = "agnes-hugo-theme"
[params]
dateFormat = "Jan 2, 2023"
authorName = "Bella"
Title = "Bellas Keys"
Description = "Your Website Description"
Image = "https://example.com/image.jpg"
Favicon = "https://example.com/favicon.png"
[menu]
[[menu.external]]

View file

@ -7,6 +7,18 @@
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<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" />
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
</head>