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.
74 lines
2.5 KiB
74 lines
2.5 KiB
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" slick-uniqueid="1">
|
|
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{.Title}}</title>
|
|
<meta name="keywords" content="{{.Keywords}}" />
|
|
<meta name="description" content="{{.Description}}" />
|
|
<link rel="stylesheet" href="{{ staticFile "/css/index.css"}}">
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700,300italic,700italic|Yanone+Kaffeesatz:400,300,700,200"
|
|
rel="stylesheet" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root">
|
|
<header>
|
|
<div id="banner-root">
|
|
<div class="container" style="padding:0px;" id="banner-con">
|
|
<nav style="display:initial;">
|
|
<div class="navbar navbar-default row">
|
|
<div class="navbar-header col-sm-6 col-xs-12">
|
|
<a class="navbar-brand" href="{{.IndexUrl}}"><img src="{{replaceImage .Logo}}"
|
|
class="img-responsive" id="logo-con" alt="Our Logo"></a>
|
|
</div>
|
|
<div class="navbar-collapse col-sm-6 col-xs-12" id="navbar-con">
|
|
<ul class="nav navbar-nav navbar-right navbar-offset" id="main-nav">
|
|
<li><a href="{{.IndexUrl}}" target="_self">{{lang "home"}}</a></li>
|
|
<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>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<style>
|
|
.twoLine {
|
|
text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
-webkit-line-clamp: 2;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
.fiveLine {
|
|
text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
-webkit-line-clamp: 5;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
<div id="body-bkgd">
|
|
<div class="container inner-container" id="body-con">
|
|
<div class="row">
|
|
<div class="col-md-12 col-s-12 col-xs-12" id="content">
|
|
<h1 >{{lang "policy"}}</h1>
|
|
<hr>
|
|
{{.Policy}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |