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/connectify/contact.html

174 lines
9.5 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" />
<meta name="referrer" content="unsafe-url">
<meta name="keywords" content="{{.Keywords}}">
<meta name="description" content="{{.Description}}">
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/blance.css"}}" />
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/index.css"}}" />
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/common.css"}}" />
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/bootstrap.min.css"}}" />
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
</head>
<body
class="archive category category-blog category-1374 x-renew x-child-theme-active x-full-width-layout-active x-full-width-active x-masonry-active x-archive-masonry-active x-navbar-static-active pro-v5_1_4">
<div id="x-root" class="x-root">
<div id="x-root" class="x-root">
<div id="top" class="site">
<header class="masthead masthead-inline" role="banner">
<div class="x-navbar-wrap">
<div class="x-navbar">
<div class="x-navbar-inner">
<div class="x-container max width">
<a href="{{.IndexUrl}}" class="x-brand img">
<img src="{{replaceImage .Logo}}" alt="Connectify"></a>
<nav class="x-nav-wrap desktop" role="navigation">
<ul id="menu-main" class="x-nav">
<li id="menu-item-43415"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-43415">
<a href="{{.IndexUrl}}"><span>{{ lang "home"}}</span></a>
</li>
{{if .HasAbout }}
<li id="menu-item-43416"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-43416">
<a href="{{.AboutUrl}}"><span>{{ lang "about" }}</span></a>
</li>
{{end}}
{{if .HasContact }}
<li id="menu-item-43417"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-43417">
<a href="{{.ContactUrl}}"><span>{{ lang "contact" }}</span></a>
</li>
{{end}}
{{if .HasPolicy }}
<li id="menu-item-43417"
class="menu-item menu-item-type-custom menu-item-object-custom menu-item-43417">
<a href="{{.PolicyUrl}}"><span>{{ lang "policy"}}</span></a>
</li>
{{end}}
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<header class="x-header-landmark">
<div class="x-container max width">
<div class="x-landmark-breadcrumbs-wrap">
<div class="x-landmark">
<h1 class="h-landmark"><span>{{lang "contact"}}</span></h1>
</div>
</div>
</div>
</header>
<div class="x-container max width offset">
<div class="x-main full" role="main">
<section id="content" class="container">
<div>
{{.Contact}}
<form class="col-12 col-lg-6" style="padding: 0;">
<div class="form-group">
<label for="emailInput">{{lang "about_email"}}</label>
<input type="email" class="form-control" id="emailInput" placeholder="name@example.com">
</div>
<div class="form-group">
<label for="nameInput">{{lang "about_name"}}</label>
<input type="name" class="form-control" id="nameInput" placeholder="your name">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">{{lang "about_message"}}</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"
placeholder="what do you want to say"></textarea>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">{{lang "about_send"}}</button>
</form>
</div>
</section>
</div>
</div>
<footer class="x-colophon top">
<div class="x-container max width">
<div class="x-column x-md x-1-4">
<div id="custom_html-3" class="widget_text widget widget_custom_html">
<div class="textwidget custom-html-widget">
<h6 class="h-custom-headline accent"><span>{{lang "related"}}</span></h6>
</div>
</div>
<div id="nav_menu-3" class="widget widget_nav_menu">
<div class="menu-footer-column-1-container">
<ul id="menu-footer-column-1" class="menu">
{{if .HasAbout }}
<li id="menu-item-44139"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44139"><a
href="{{.AboutUrl}}">{{lang "about"}}</a>
</li>
{{end}}
{{if .HasContact }}
<li id="menu-item-44140"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44140"><a
href="{{.ContactUrl}}">{{lang "contact"}}</a></li>
{{end}}
{{if .HasPolicy }}
<li id="menu-item-44141"
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44141"><a
href="{{.PolicyUrl}}">{{lang "policy"}}</a></li>
{{end}}
</ul>
</div>
</div>
</div>
<div class="x-column x-md x-1-4">
<div id="custom_html-4" class="widget_text widget widget_custom_html">
<div class="textwidget custom-html-widget">
<h6 class="h-custom-headline accent"><span class='right'>&nbsp;</span></h6>
</div>
</div>
{{$flen := len .Friendship}}
{{if ne $flen 0}}
<div id="nav_menu-4" class="widget widget_nav_menu">
<div class="menu-footer-column-2-container">
<ul id="menu-footer-column-2" class="menu">
{{range .Friendship}}
<li
class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44146"><a
href="{{.Url}}">{{.Name}}</a>
</li>
{{end}}
</ul>
</div>
</div>
{{end}}
</div>
</div>
</footer>
</div>
</div>
</div>
</body>
</html>