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.
146 lines
3.6 KiB
146 lines
3.6 KiB
<!DOCTYPE html>
|
|
<html lang="en-US" class="fuel4 nojs">
|
|
|
|
<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 rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
|
|
<link rel="stylesheet" href="{{staticFile "/css/a7.css"}}">
|
|
<link rel="stylesheet" href="{{staticFile "/css/style.css"}}">
|
|
|
|
|
|
</head>
|
|
|
|
<body class="blog">
|
|
<div id="wrapper">
|
|
|
|
|
|
<!-- Fuel Alert Bar -->
|
|
|
|
|
|
<header id="header" class="contain" role="banner">
|
|
<img src="{{replaceImage .Logo}}" alt="logo">
|
|
<ul>
|
|
<a style="margin-right:5px;" href="{{.IndexUrl}}" >Home</a>
|
|
{{if .HasAbout }}
|
|
<a style="margin-right:5px;" href="{{.AboutUrl}}">About</a>
|
|
{{end}}
|
|
{{if .HasContact }}
|
|
<a style="margin-right:5px;" href="{{.ContactUrl}}">Contact</a>
|
|
{{end}}
|
|
</ul>
|
|
</header>
|
|
|
|
<main id="main">
|
|
|
|
<div class="main-content main-sidebar main-blog">
|
|
|
|
<header class="contain main-header">
|
|
|
|
<h1 class="main-title entry-title">About</h1>
|
|
</header>
|
|
<div class="contain entry-wrapper entry-sidebar">
|
|
<div class="clear entry-content entry-post">
|
|
<p>{{.About}}</p>
|
|
</div>
|
|
|
|
<aside id="secondary" class="widget-area" role="complementary">
|
|
<section id="recent-posts-3" class="widget widget_recent_entries">
|
|
<header>
|
|
<h3 class="widget-title">POPULAR ARTICLES</h3>
|
|
</header>
|
|
{{$plen := len .PopularArticles}}
|
|
{{if ne $plen 0}}
|
|
<ul>
|
|
{{range .PopularArticles}}
|
|
<li>
|
|
<a
|
|
href="{{.Url}}" target="_blank">{{.Title}}</a>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
{{end}}
|
|
</section>
|
|
</aside>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</main>
|
|
|
|
<footer id="footer" role="contentinfo">
|
|
<div class="contain">
|
|
<div class="footer-wrap">
|
|
{{$flen := len .Friendship}}
|
|
{{if ne $flen 0}}
|
|
<div class="footer-links">
|
|
<span class="footer-heading">Friendship Links</span>
|
|
<div class="menu-footer-menu-container">
|
|
<ul id="menu-footer-menu" class="menu">
|
|
{{range .Friendship}}
|
|
<li id="menu-item-39"
|
|
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-39">
|
|
<a href="{{.Url}}">{{.Name}}</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</div>
|
|
<nav id="footer-navigation" class="secondary-navigation" role="navigation"></nav>
|
|
</div>
|
|
{{end}}
|
|
<div class="footer-address">
|
|
<span class="footer-heading"> Quick Links</span>
|
|
<ul class="locations-wrapper">
|
|
<li >
|
|
<a href="{{.IndexUrl}}">Home</a></li>
|
|
{{if .HasAbout }}
|
|
<li
|
|
><a
|
|
href="{{.AboutUrl}}">About </a></li>
|
|
{{end}}
|
|
{{if .HasContact }}
|
|
<li ><a
|
|
href="{{.ContactUrl}}">CONTACT </a></li>
|
|
{{end}}
|
|
{{if .HasPolicy }}
|
|
<li
|
|
><a
|
|
href="{{.PolicyUrl}}"> Policy</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div><!-- close footer-wrap-->
|
|
|
|
|
|
</div><!-- close contain-->
|
|
|
|
|
|
<div class="contain site-info">
|
|
<div class="copyright">{{.Copyright}}</div>
|
|
<nav id="copyright-navigation" class="copyright-navigation" role="navigation">
|
|
<div class="menu-copyright-menu-container">
|
|
<ul id="menu-copyright-menu" class="menu">
|
|
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</footer>
|
|
|
|
</div><!-- #wrapper -->
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|