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.
 
 
 
 

141 lines
4.6 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, maximum-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/common.css"}}" />
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
<link href='{{staticFile "/css/allindex.css"}}' rel="stylesheet" />
</head>
<body>
<header>
<nav>
<div class="menu-underlay"></div>
<div class="header-navbar shadow-card h-16 md:h-8.2">
<div class="flex items-center pl-4 pr-0">
<div class="pl-4 md:pl-3 xl:pl-1 mr-3 items-center">
<a role="link" href="{{.IndexUrl}}">
<img
src="{{replaceImage .Logo}}"
alt="SolarReviews"
style="height: 65px;"
/>
</a>
</div>
<div class="hidden sm:flex items-center">
<a
href="{{.IndexUrl}}"
class="font-display text-grey-400 hover:text-blue-500 px-3 py-3.75 leading-tight border-b border-white hover:border-blue-500"
>{{ lang "home"}}</a
>
<a
href="{{.AboutUrl}}"
class="font-display text-grey-400 hover:text-blue-500 px-3 py-3.75 leading-tight border-b border-white hover:border-blue-500"
>{{ lang "about"}}</a
>
<a
href="{{.ContactUrl}}"
class="font-display text-grey-400 hover:text-blue-500 px-3 py-3.75 leading-tight border-b border-white hover:border-blue-500"
>{{ lang "contact"}}</a
>
<a
href="{{.PolicyUrl}}"
class="font-display text-grey-400 hover:text-blue-500 px-3 py-3.75 leading-tight border-b border-white hover:border-blue-500"
>{{ lang "policy"}}</a
>
</div>
</div>
</div>
</nav>
</header>
<div class="bg-white h-16 md:h-8.2 w-full"></div>
<div id="content-area" class="">
<section id="content" class="container">
<div id="breadcrumb">
<a href="{{.IndexUrl}}">{{lang "home"}}</a>
<a href="#">{{lang "policy"}}</a>
</div>
<h1 id="page-title">{{lang "policy"}}</h1>
<div>
{{.Policy}}
</div>
</section>
</div>
<footer class="mt-7">
<div class="w-full max-w-screen-xl mx-auto px-4 md:px-5"></div>
<div class="bg-blue-800">
<div
class="w-full max-w-screen-xl mx-auto px-4 md:px-5 pt-4 pb-6 sm:pb-8"
>
<div class="grid grid-cols-1 lg:grid-cols-4">
<div class="lg:col-span-1 pt-5 pb-2 md:pr-6">
<div class="flex justify-center sm:justify-start">
<a href="{{.IndexUrl}}">
<img
class="w-56"
src="{{replaceImage .Logo}}"
alt="SolarReviews"
/>
</a>
</div>
</div>
<div class="lg:col-span-3 pt-3 lg:pt-7 pb-2">
<div
class="flex items-center flex-col sm:flex-row justify-center sm:justify-start"
>
<a href="{{.IndexUrl}}"
><h5 class="text-cyan-500 pb-0 sm:mr-4 mt-3 sm:mt-0">
{{ lang "home"}}
</h5></a
>
<a href="{{.AboutUrl}}"
><h5 class="text-cyan-500 pb-0 sm:mr-4 mt-3 sm:mt-0">
{{ lang "about"}}
</h5></a
>
<a href="{{.ContactUrl}}"
><h5 class="text-cyan-500 pb-0 sm:mr-4 mt-3 sm:mt-0">
{{ lang "contact"}}
</h5></a
>
<a href="{{.PolicyUrl}}"
><h5 class="text-cyan-500 pb-0 sm:mr-4 mt-3 sm:mt-0">
{{ lang "policy"}}
</h5></a
>
</div>
<div class="flex flex-row justify-center sm:justify-start">
<div class="pt-2 pb-4">
<p class="text-white text-sm p-0">
{{.Copyright}}
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="{{staticFile "/js/jquery-3.6.0.slim.min.js"}}"></script>
<script src="{{staticFile "/js/bootstrap.bundle.min.js"}}"></script>
<script src="{{staticFile "/js/index.js"}}"></script>
</body>
</html>