This commit is contained in:
parent
ab892fa850
commit
529dae19ef
3 changed files with 18 additions and 0 deletions
|
@ -9,6 +9,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
recursive: true
|
||||
- name: Add key
|
||||
run: |
|
||||
mkdir $HOME/.ssh && \
|
||||
|
|
|
@ -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]]
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue