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/esa/policy.html

171 lines
6.0 KiB

2 years ago
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="keywords" content="{{.Keywords}}">
<meta name="description" content="{{.Description}}">
<title>{{.Title}}</title>
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name='robots' content='max-image-preview:large' />
<link rel="stylesheet" href="{{staticFile "/css/style.css"}}">
</head>
<body class="archive category category-press-releases category-491 menu-closed tribe-no-js ecwd-theme-esa-main">
<div id="page">
<div id="header-wrap">
<header id="header">
<div id="header-top">
<div class="logo">
<a href="{{.IndexUrl}}">
<img src="{{replaceImage .Logo}}" alt="">
</a>
</div><!-- .logo -->
</div><!-- #header-top -->
<div id="header-bottom">
<div id="menu-wrap">
<div id="menu-inner">
<nav id="menu" aria-labelledby="mainmenulabel">
<ul>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.IndexUrl}}">{{ lang "home"}}</a></li>
{{if .HasAbout }}
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.AboutUrl}}">{{ lang "about"}}</a></li>
{{end}}
{{if .HasContact }}
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.ContactUrl}}">{{ lang "contact"}}</a></li>
{{end}}
</ul>
</nav><!-- #menu -->
<!--troubleshooting to remove (10/26/22) -->
</div>
<!-- #menu-inner -->
</div>
<!-- #menu-wrap -->
</div><!-- #header-bottom -->
</header><!-- #header -->
</div><!-- #header-wrap -->
<main>
<div class="container-fluid">
<div id="content">
<div class="content-inner">
<div class="row justify-content-between">
<div class="col-xl-7 col-lg-7">
<article class="post-content">
<div class="entry-header">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{.IndexUrl}}">{{lang "home"}}</a></li>
<li class="breadcrumb-item active">{{ lang "policy" }}</li>
</ol>
</nav>
<h1 class="entry-title">{{ lang "policy" }}</h1>
</div>
<!-- .entry-header -->
<div class="entry-content">
{{.Policy}}
</div>
<!-- .entry-footer -->
</article>
<!-- .post-content -->
</div>
<!-- .col -->
<div class="col-xl-4 col-lg-5">
<aside id="sidebar">
{{$plen := len .PopularArticles}}
{{if ne $plen 0}}
<section class="widget_text sidebar-item sidebar-item-highlight">
<h3>{{lang "popular"}}</h3>
<div class="textwidget custom-html-widget">
{{range .PopularArticles}}
<a href="{{.Url}}">{{.Title}}</a>
<br>
{{end}}
</div>
</section>
{{end}}
</aside><!-- #sidebar -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .content-inner -->
</div><!-- #content -->
</div><!-- .container-fluid -->
</main>
<div id="footer-wrap">
<div class="container-fluid">
<footer id="footer">
<div class="footer-top">
<div class="logo">
<a href="{{.IndexUrl}}">
<img src="{{replaceImage .Logo}}" alt="Logo" class="img-fluid">
</a>
</div><!-- .logo -->
</div><!-- .footer-top -->
<div class="row">
<div class="col-lg-6 col-md-8">
<nav id="menu-footer" aria-labelledby="footermenulabel">
<h2 id="footermenulabel" class="sr-only">{{lang "related"}}</h2>
<ul>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.IndexUrl}}">{{ lang "home"}}</a></li>
{{if .HasAbout }}
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.AboutUrl}}">{{ lang "about"}}</a></li>
{{end}}
{{if .HasContact }}
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.ContactUrl}}">{{ lang "contact"}}</a></li>
{{end}}
{{if .HasPolicy }}
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.PolicyUrl}}">{{ lang "policy"}}</a></li>
{{end}}
{{$flen := len .Friendship}}
{{if ne $flen 0}}
{{range .Friendship}}
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-30678"><a
href="{{.Url}}">{{.Name}}</a></li>
{{end}}
{{end}}
</ul>
</nav>
</div><!-- .col -->
</div><!-- .row -->
<div class="copyright">
{{.Copyright}}</div>
</footer>
</div><!-- .container-fluid -->
</div>
</div><!-- #page -->
</body>
</html>