cms系统的站点模板库
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.
 
 
 
 
cms_templates/chow/policy.html

92 lines
3.8 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{staticFile "/css/index.css"}}">
<link rel="stylesheet" href="{{staticFile "/css/style.css"}}">
<link rel="stylesheet" href="{{staticFile "/css/style.min.css"}}">
<meta name="keywords" content="{{.Keywords}}">
<meta name="description" content="{{.Description}}">
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
</head>
<body>
<header>
<div>
<div id="mega-menu-wrap-main" class="mega-menu-wrap">
<div class="mega-menu-toggle">
<div class="mega-toggle-blocks-right">
<img src="{{replaceImage .Logo}}" alt="">
</div>
</div>
<ul id="mega-menu-main" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js"
data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="slide_left"
data-effect-speed-mobile="200" data-mobile-force-width="false" data-second-click="go"
data-document-click="collapse" data-vertical-behaviour="standard" data-breakpoint="767" data-unbind="true"
data-mobile-state="collapse_all" data-hover-intent-timeout="300" data-hover-intent-interval="100">
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-home mega-align-bottom-left mega-menu-flyout mega-menu-item-4754' ><a class="mega-menu-link" href="{{.IndexUrl}}" tabindex="0">{{ lang "home"}}</a></li>
{{if .HasAbout }}
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-home mega-align-bottom-left mega-menu-flyout mega-menu-item-4754' ><a class="mega-menu-link" href="{{.AboutUrl}}" tabindex="0">{{ lang "about"}}</a></li>
{{end}}
{{if .HasContact }}
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-home mega-align-bottom-left mega-menu-flyout mega-menu-item-4754' ><a class="mega-menu-link" href="{{.ContactUrl}}" tabindex="0">{{ lang "contact"}}</a></li>
{{end}}
{{if .HasPolicy }}
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-home mega-align-bottom-left mega-menu-flyout mega-menu-item-4754' ><a class="mega-menu-link" href="{{.PolicyUrl}}" tabindex="0">{{ lang "policy"}}</a></li>
{{end}}
</ul>
</div>
</div>
</header>
<section id="main" style="padding-top: 150px;">
<div class="grid-container grid-parent">
<div id="content" class="grid-100 tablet-100 mobile-100">
<h1>{{ lang "policy" }}</h1>
{{.Policy}}
</div><!-- #/content -->
</div><!-- #/container -->
</section><!-- #/main -->
<footer>
<div class="grid-container">
<div id="logo">
<a href="{{.IndexUrl}}" title="logo">
<img class="img-resp" src="{{replaceImage .Logo}}"
alt="logo">
</a>
</div>
<p>
<span>{{.Copyright}}</span>
<span>
{{if .HasAbout }}
<a href="{{.AboutUrl}}">{{lang "about"}}</a>
{{end}}
{{if .HasContact }}
|
<a href="{{.ContactUrl}}">{{lang "contact"}}</a>
{{end}}
{{if .HasPolicy }}
|
<a href="{{.PolicyUrl}}">{{lang "policy"}}</a>
{{end}}
{{$flen := len .Friendship}}
{{if ne $flen 0}}
{{range .Friendship}}
|
<a href="{{.Url}}">{{.Name}}</a>
{{end}}
{{end}}
</span>
<span><a href="http://www.nkpmedical.com" target="_blank">NKP MEDICAL MARKETING</a></span>
</p>
</div>
</footer>
</body>
</html>