Included comments
This commit is contained in:
parent
3bba6c7544
commit
703a33ccc2
3 changed files with 41 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
title = "eNBeWe.de"
|
||||
|
||||
# Main base url
|
||||
baseURL = "https://blog.enbewe.de"
|
||||
baseURL = "https://blog.enbewe.de/"
|
||||
|
||||
# Theme config
|
||||
theme = "mainroad"
|
||||
|
|
5
layouts/partials/comments.html
Normal file
5
layouts/partials/comments.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
{{"<!-- begin comments //-->" | safeHTML}}
|
||||
<section id="isso-thread">
|
||||
|
||||
</section>
|
||||
{{"<!-- end comments //-->" | safeHTML}}
|
35
layouts/partials/header.html
Normal file
35
layouts/partials/header.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .Title }}</title>
|
||||
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
||||
{{ .Hugo.Generator }}
|
||||
{{ if .Site.Params.opengraph }}{{ template "_internal/opengraph.html" . }}{{ end }}
|
||||
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
|
||||
<link rel="dns-prefetch" href="//fonts.gstatic.com" />
|
||||
{{ if .RSSLink }}<link rel="alternate" type="application/rss+xml" title="{{ .Site.Title }} Feed" href="{{ .RSSLink }}">{{ end }}
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700" type="text/css" media="all" />
|
||||
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}" type="text/css" media="all" />
|
||||
{{ "<!-- isso -->" | safeHTML }}
|
||||
<script data-isso="{{ .Site.BaseURL }}isso/" src="{{ .Site.BaseURL }}isso/js/embed.min.js"></script>
|
||||
{{ "<!-- end isso -->" | safeHTML }}
|
||||
<script type="text/javascript" src="{{ "js/scripts.js" | relURL }}"></script>
|
||||
<link rel="shortcut icon" href="{{ "favicon.ico" | relURL }}">
|
||||
{{ template "_internal/google_analytics_async.html" . }}
|
||||
</head>
|
||||
<body class="body {{ if (.Site.Params.leftsidebar) or (.Params.leftsidebar) }}body-left-sidebar{{ else }}body-right-sidebar{{ end }} mobile" itemscope="itemscope" itemtype="http://schema.org/WebPage">
|
||||
<div class="container container-outer">
|
||||
<header class="header" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
|
||||
<div class="container container-inner clearfix">
|
||||
<div class="logo" role="banner" itemscope="itemscope" itemtype="http://schema.org/Brand">
|
||||
<a class="logo__link" href="{{ "" | relLangURL }}" title="{{ .Site.Title }}" rel="home">
|
||||
<h1 class="logo__title">{{ .Site.Title }}</h1>
|
||||
{{ with .Site.Params.subtitle }}<h2 class="logo__tagline">{{ . }}</h2>{{ end }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{{ partial "menu.html" . }}
|
||||
</header>
|
||||
<div class="wrapper clearfix">
|
Loading…
Reference in a new issue