This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
let burger = document.querySelector('.burger'); | |
let close = document.querySelector('.close'); | |
let sidenav = document.querySelector('#sidenav'); | |
// Burger click function | |
burger.addEventListener('click', function () { | |
sidenav.classList.add('active'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#sidenav { | |
max-height: 100vh; | |
height: 100vh; | |
max-width: 70vw; | |
min-width: 300px; | |
overflow-x: hidden; | |
overflow-y: auto; | |
transition: all .3s ease-in-out; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Meta:OG--> | |
<meta name="twitter:card" content="summary_large_image" /> | |
<meta name="twitter:site" content="@{{.Site.Params.twitter}}" /> | |
<meta property="og:url" content="{{ .Permalink }}" /> | |
<meta property="og:title" content="{{ .Title }}" /> | |
<meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Params.description }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" /> | |
<meta property="og:image" content="{{ if .IsPage }}{{ with .Params.images }}{{ . | absURL }}{{ end }}{{ else }}{{ with .Site.Params.cover }}{{ . | absURL }}{{ end }}{{ end }}" /> | |
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The template for displaying page pagination. | |
* | |
* @package WordPress | |
* @subpackage Pehthemepress | |
* | |
*/ | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Check hugo version | |
hugo version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hugo v0.101.0-466fa43c16709b4483689930a4f9ac8add5c9f66+extended darwin/amd64 BuildDate=2022-06-16T07:09:16Z VendorInfo=gohugoio |