You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.8 KiB
88 lines
3.8 KiB
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{.Title}}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="referrer" content="unsafe-url">
|
|
<meta name="keywords" content="{{.Keywords}}">
|
|
<meta name="description" content="{{.Description}}">
|
|
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
|
|
<link rel="stylesheet" href="{{staticFile "/css/style.css"}}">
|
|
<link rel="stylesheet" href="{{staticFile "/css/main.css"}}">
|
|
</head>
|
|
|
|
<body class="interior loaded sticky">
|
|
<!-- End Google Tag Manager (noscript) -->
|
|
<div id="wrapper" class="loaded">
|
|
<header id="header-wrapper">
|
|
<div id="header-lower" class="clearfix">
|
|
<a href="{{.IndexUrl}}" id="header-logo" itemprop="image" itemscope="" itemtype="http://schema.org/ImageObject"><img
|
|
src="{{replaceImage .Logo}}" alt="logo" title="" width="382" height="264" itemprop="url"></a>
|
|
<nav id="main-nav">
|
|
<ul class="main-nav">
|
|
<!-- mav -->
|
|
<li class="first"><span><a href="{{.IndexUrl}}" class="first">Home</a></span></li>
|
|
{{if .HasAbout }}
|
|
<li><span><a href="{{.AboutUrl}}">About</a></span></li>
|
|
{{end}}
|
|
{{if .HasContact }}
|
|
<li class="last"><span><a href="{{.ContactUrl}}" class="last">Contact</a></span></li>
|
|
{{end}}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main id="content-wrapper" class="clearfix">
|
|
<div class="content">
|
|
<div id="text-only-banner" class="bannerOverlay">
|
|
<h1 class="noMargin">{{.Title}}</h1><br>
|
|
<p class="alignCenter date">{{timeFormat .PublishTime}}</p>
|
|
</div>
|
|
<div class="container clearfix">
|
|
<article class="blog-post-wrapper postDetail">
|
|
<section class="clearfix">
|
|
<img width="100%" src="{{getCover .Article.Pictures}}" />
|
|
<p class="speakableTextP1">{{.Article.Summary}}</p>
|
|
{{range .Article.Topics}}
|
|
<p><strong>{{.Topic}}</strong></p>
|
|
{{$tlen := len .Pictures}}
|
|
{{if ne $tlen 0}}
|
|
{{range .Pictures}}
|
|
<img width="100%" src="{{replaceImage .}}" />
|
|
{{end}}
|
|
{{end}}
|
|
<p>{{.Content}}</p>
|
|
{{end}}
|
|
</section>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</main>
|
|
<footer id="footer-wrapper" class="clearfix">
|
|
|
|
<p id="copyright-text" class="alignCenter">{{.Copyright}} /
|
|
<a href="{{.IndexUrl}}">Home </a> /
|
|
{{if .HasAbout }}
|
|
<a href="{{.AboutUrl}}">About </a> /
|
|
{{end}}
|
|
{{if .HasContact }}
|
|
<a href="{{.ContactUrl}}">Contact </a> /
|
|
{{end}}
|
|
{{if .HasPolicy }}
|
|
<a href="{{.PolicyUrl}}">Policy </a> /
|
|
{{end}}
|
|
</p>
|
|
</footer>
|
|
<div id="overlay"></div>
|
|
</div>
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|