Merge pull request #15 from jtom38/features/ui/meta-tags
Features/UI/meta tags
This commit is contained in:
commit
b5ff37e179
@ -1,6 +1,7 @@
|
||||
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:
|
||||
|
@ -1,12 +1,18 @@
|
||||
{{ partial "header.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>
|
||||
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
|
@ -1,6 +1,16 @@
|
||||
{{ partial "header.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 }}
|
||||
@ -8,5 +18,6 @@
|
||||
{{ if $.Site.Params.UseCardView }}
|
||||
{{ partial "list.cards.html" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</body>
|
||||
|
||||
{{ partial "footer.html" . }}
|
@ -1,6 +1,14 @@
|
||||
{{ partial "header.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>
|
||||
|
||||
@ -35,6 +43,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
</body>
|
@ -1,3 +0,0 @@
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,6 +1,3 @@
|
||||
<!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">
|
||||
@ -9,31 +6,3 @@
|
||||
<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" . }}
|
@ -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">
|
@ -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">
|
22
themes/hugo-bulma-cookbook/layouts/partials/script.menu.html
Normal file
22
themes/hugo-bulma-cookbook/layouts/partials/script.menu.html
Normal 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>
|
||||
|
@ -1,6 +1,16 @@
|
||||
{{ 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>
|
||||
|
||||
@ -12,5 +22,4 @@
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
</body>
|
Loading…
Reference in New Issue
Block a user