Updated the layout to load meta tags for when a link is shared with someone

This commit is contained in:
James Tombleson 2022-10-18 21:56:21 -07:00
parent 9dbd44dd2f
commit 3fc155c7ba
9 changed files with 126 additions and 98 deletions

View File

@ -1,6 +1,7 @@
baseURL: 'https://jtom38.github.io/cookbook/'
#baseURL: 'https://jtom38.github.io/cookbook/'
baseURL: 'https://cookbook.jamestombleson.com/'
languageCode: 'en-us'
title: 'Cookbook'
title: 'Tombleson Family Cookbook'
theme: "hugo-bulma-cookbook"
taxonomies:

View File

@ -1,12 +1,18 @@
{{ partial "header.html" . }}
{{ partial "hero.html" . }}
<div class="container">
<br>
<div class="content">
{{ .Content }}
<!DOCTYPE html>
<html lang="{{ .Page.Language | default "en" }}">
<head>
{{ partial "header.html"}}
{{ partial "header.meta.html" .}}
{{ partial "script.menu.html"}}
<title>{{ .Title }}</title>
</head>
<body>
{{ partial "navbar" . }}
{{ partial "hero.html" . }}
<div class="container">
<br>
<div class="content">
{{ .Content }}
</div>
</div>
</div>
</body>

View File

@ -1,12 +1,23 @@
{{ partial "header.html" . }}
{{ partial "hero.html" . }}
<!DOCTYPE html>
<html lang="{{ .Page.Language | default "en" }}">
<head>
{{ partial "header.html"}}
{{ partial "header.meta.html" .}}
{{ partial "script.menu.html"}}
<title>{{ .Title }}</title>
</head>
<body>
{{ partial "navbar" . }}
{{ partial "hero.html" . }}
<div class="container">
<br>
{{ if $.Site.Params.UseListRows }}
{{ partial "list.rows.html" . }}
{{ end }}
{{ if $.Site.Params.UseCardView }}
{{ partial "list.cards.html" . }}
{{ end }}
</div>
</body>
{{ if $.Site.Params.UseListRows }}
{{ partial "list.rows.html" . }}
{{ end }}
{{ if $.Site.Params.UseCardView }}
{{ partial "list.cards.html" . }}
{{ end }}
{{ partial "footer.html" . }}

View File

@ -1,40 +1,46 @@
{{ partial "header.html" . }}
{{ partial "hero.html" . }}
<!DOCTYPE html>
<html lang="{{ .Page.Language | default "en" }}">
<head>
{{ partial "header.html"}}
{{ partial "header.meta.single.html" .}}
{{ partial "script.menu.html"}}
<title>{{ .Title }}</title>
</head>
<body>
{{ partial "navbar" . }}
{{ partial "hero.html" . }}
<div class="container">
<br>
<div class="container">
<br>
<div class="columns">
<div class="columns">
<div class="column">
<img src="{{ .Site.BaseURL }}{{.File.Dir}}thumbnail.png" alt="Missing thumbnail :(" />
</div>
<div class="column">
<div class="content">
{{ .Content }}
<div class="column">
<img src="{{ .Site.BaseURL }}{{.File.Dir}}thumbnail.png" alt="Missing thumbnail :(" />
</div>
<h4 class="subtitle" id="date"> Posted: {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
<h5 class="subtitle" id="wordcount"> Word Count: {{ .WordCount }} Words </h5>
<br>
<h2 class="title">Tags</h2>
<div class="buttons">
{{ with .Params.tags }}
{{ range . }}
<button class="button">
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
</button>
{{ end }}
{{ end }}
<div class="column">
<div class="content">
{{ .Content }}
</div>
<h4 class="subtitle" id="date"> Posted: {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
<h5 class="subtitle" id="wordcount"> Word Count: {{ .WordCount }} Words </h5>
<br>
<h2 class="title">Tags</h2>
<div class="buttons">
{{ with .Params.tags }}
{{ range . }}
<button class="button">
<a href="{{ " tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
</button>
{{ end }}
{{ end }}
</div>
</div>
</div>
</div>
</div>
{{ partial "footer.html" . }}
</body>

View File

@ -1,3 +0,0 @@
</body>
</html>

View File

@ -1,39 +1,8 @@
<!DOCTYPE html>
<html lang="{{ .Page.Language | default "en" }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/bulma-prefers-dark" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/bulma-prefers-dark" />
<link rel="icon" href="{{ .Site.BaseURL }}favicon.svg">
<link rel="mask-icon" href="{{ .Site.BaseURL }}favicon.svg" color="#000000">
<link rel="apple-touch-icon" href="{{ .Site.BaseURL }}apple-touch-icon.svg">
<script>
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach(el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});
</script>
<title>{{ .Title }}</title>
</head>
<body>
{{ partial "navbar" . }}
<link rel="icon" href="{{ .Site.BaseURL }}favicon.svg">
<link rel="mask-icon" href="{{ .Site.BaseURL }}favicon.svg" color="#000000">
<link rel="apple-touch-icon" href="{{ .Site.BaseURL }}apple-touch-icon.svg">

View File

@ -0,0 +1,7 @@
<meta name="og:site_name" content="Tombleson Cookbook" >
<meta name="og:title" content="{{ .Title }}">
<meta name="og:image" content="{{ .Site.BaseURL }}favicon.svg">
<meta name="twitter:card" charset="summary_large_image">
<meta name="twitter:title" content="{{ .Title }}">
<meta name="twitter:image" content="{{ .Site.BaseURL }}favicon.svg">

View File

@ -0,0 +1,9 @@
<meta name="og:site_name" content="Tombleson Cookbook" >
<meta name="og:title" content="{{ .Title }}">
<meta name="og:description" content="{{ .Params.subtitle }}">
<meta name="og:image" content="{{ .Permalink }}thumbnail.png">
<meta name="twitter:card" charset="summary_large_image">
<meta name="twitter:title" content="{{ .Title }}">
<meta name="twitter:description" content="{{ .Params.subtitle }}">
<meta name="twitter:image" content="{{ .Permalink }}thumbnail.png">

View File

@ -0,0 +1,22 @@
<script>
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach(el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});
</script>