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.
146 lines
4.8 KiB
146 lines
4.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">
|
|
<!-- <link type="text/css" rel="stylesheet" href="{{staticFile "/css/bootstrap.min.css"}}" /> -->
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/index.css"}}" />
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/public.css"}}" />
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body id="skrollr-body">
|
|
|
|
|
|
<div class="ccm-page page-type-page page-template-sidebar ccm-page">
|
|
<nav class="navbar" id="header" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<a href="{{.IndexUrl}}" class="logo"><img
|
|
src="{{replaceImage .Logo}}" id="logo"
|
|
alt="Hawkeye Communication" /></a>
|
|
|
|
|
|
</div>
|
|
<div id="navbar" class="collapse navbar-collapse">
|
|
<nav id="nav-main">
|
|
<ul class="nav navbar-nav">
|
|
<li class=""><a href="{{.IndexUrl}}" target="_self"
|
|
class="">{{ lang "home"}}</a>
|
|
</li>
|
|
<li class=""><a href="{{.AboutUrl}}" target="_self"
|
|
class="">{{ lang "about"}}</a>
|
|
</li>
|
|
<li class=""><a href="{{.ContactUrl}}" target="_self"
|
|
class="">{{ lang "contact"}}</a>
|
|
</li>
|
|
<li class=""><a href="{{.PolicyUrl}}" target="_self"
|
|
class="">{{ lang "policy"}}</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</nav>
|
|
|
|
</div>
|
|
<!--/.nav-collapse -->
|
|
</div>
|
|
</nav>
|
|
|
|
<header>
|
|
<div class="container">
|
|
<h1>{{lang "latest"}}</h1>
|
|
|
|
</div>
|
|
</header>
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
<div class="ccm-custom-style-container ccm-custom-style-main-1608 ccm-block-custom-template-news-post">
|
|
<div class="news-attributes">
|
|
<div>
|
|
<h2>{{.Title}}</h2>
|
|
</div>
|
|
</div>
|
|
<p class="normal"><img src="{{getCover .Article.Pictures}}"
|
|
alt="Thermostat-1a.jpg" width="1738" height="884"></p>
|
|
|
|
<p class="normal">{{.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}}
|
|
|
|
|
|
<div>
|
|
{{ if .Prev }}
|
|
<div class="hidden-text">
|
|
<a href="{{.Prev.Url}}">{{lang "prev_article"}}:{{.Prev.Title}}</a>
|
|
</div>
|
|
{{ end }}
|
|
{{ if .Next }}
|
|
<div class="hidden-text">
|
|
<a href="{{.Next.Url}}">{{lang "next_article"}}:{{.Next.Title}}</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div> <!-- /container-->
|
|
|
|
|
|
<footer class="site-footer">
|
|
|
|
<div class="site-footer__black">
|
|
<div class="container">
|
|
|
|
<div class="footer-column">
|
|
<h3><a target="_self">{{lang "related"}}</a></h3>
|
|
<ul>
|
|
<li>
|
|
<a href="{{.AboutUrl}}"
|
|
target="_self">{{lang "about"}}</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{.ContactUrl}}"
|
|
target="_self">{{lang "contact"}}</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{.PolicyUrl}}"
|
|
target="_self">{{lang "policy"}}</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="footer-copyright">
|
|
<div class="col">{{.Copyright}}</div>
|
|
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |