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.
158 lines
4.8 KiB
158 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">
|
|
<meta name="keywords" content="{{.Keywords}}">
|
|
<meta name="description" content="{{.Description}}">
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/bootstrap.min.css"}}" />
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/common.css"}}" />
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/index.css"}}" />
|
|
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
|
|
</head>
|
|
|
|
<body zoom-level="1.0" class="">
|
|
|
|
|
|
<!-- Header bar -->
|
|
<header>
|
|
<!-- Desktop Header -->
|
|
<div id="desktop-header-wrap">
|
|
|
|
<!-- Top Menu -->
|
|
|
|
<div id="desktop-header-top" class="fixed-inset-solid-bg">
|
|
<a id="desktop-logo" href="{{.IndexUrl}}"><img
|
|
src="{{replaceImage .Logo}}"></a>
|
|
|
|
|
|
<ul class="menu ">
|
|
<li class="index-1 first"><a href="{{.IndexUrl}}"
|
|
title='Find a Broker' class=''>{{ lang "home"}}</a></li>
|
|
|
|
<li class="index-1 first"><a href="{{.AboutUrl}}"
|
|
title='Find a Broker' class=''>{{ lang "about"}}</a></li>
|
|
|
|
<li class="index-1 first"><a href="{{.ContactUrl}}"
|
|
title='Find a Broker' class=''>{{ lang "contact"}}</a></li>
|
|
|
|
<li class="index-1 first"><a href="{{.PolicyUrl}}"
|
|
title='Find a Broker' class=''>{{ lang "policy"}}</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="mobile-header-top" class="fixed-inset flex-between vertical-align-children ">
|
|
|
|
<a id="desktop-logo" href="{{.IndexUrl}}"><img
|
|
src="{{replaceImage .Logo}}" style="height: 50px;width: 150px;"></a>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Main Section-->
|
|
<main id="main-block">
|
|
<section id="" class="textsection">
|
|
<div class="full-width-outset">
|
|
<div class="fixed-inset ">
|
|
<h2 id='featured'>{{lang "latest"}}</h2>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Listings -->
|
|
<div class="fixed-inset" style="margin-top: 5rem">
|
|
<div class="blog-listing">
|
|
<!-- -->
|
|
{{ range .Articles }}
|
|
|
|
<article>
|
|
<div class="image-wrapper">
|
|
|
|
<img src="{{getCover .Cover 300 180}}"
|
|
alt="">
|
|
</div>
|
|
<div class="text">
|
|
<h2 id='how-to-protect-commercial-building-roofs-from-high'>{{.Title}}
|
|
|
|
</h2>
|
|
<div class="date">{{timeFormat .PublishTime}}</div>
|
|
<p class="excerpt">{{.Summary}}</p>
|
|
|
|
<a href="{{.Url}}"
|
|
class="readmore">Read More</a>
|
|
</div>
|
|
</article>
|
|
{{end}}
|
|
|
|
<!-- -->
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</main>
|
|
<!-- Footer -->
|
|
<footer>
|
|
<div id="footer-swoop" class="splitter swoop3" style="--bg-color: #414141; z-index: -1;"></div>
|
|
|
|
|
|
<section id="footer-white">
|
|
<div class="fixed-inset">
|
|
<div class="container">
|
|
<div class="column">
|
|
|
|
<div>{{lang "related"}}</div>
|
|
<ul style="list-style: none;" class="menu ">
|
|
<li class="index-1 first"><a href="{{.AboutUrl}}"
|
|
title='Business Insurance' class=''>{{lang "about"}}</a></li>
|
|
<li class="index-1 first"><a href="{{.ContactUrl}}"
|
|
title='Business Insurance' class=''>{{lang "contact"}}</a></li>
|
|
<li class="index-1 first"><a href="{{.PolicyUrl}}"
|
|
title='Business Insurance' class=''>{{lang "policy"}}</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<section id="footer-designed-by">
|
|
<div class="fixed-inset flex-row" style="align-items: center;text-align:center">
|
|
<p>{{.Copyright}}</p>
|
|
</div>
|
|
</section>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
|
|
</html> |