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

101 lines
6.4 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/bootstrap.min.css"}}" />
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/style.css"}}" />
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
</head>
<body>
<div id="___gatsby">
<div style="outline:none" tabindex="-1" id="gatsby-focus-wrapper">
<div data-is-root-path="true" class="sc-hKgILt gTLZXx">
<header class="sc-bdfBwQ navbar___StyledHeader-sc-169lgwj-0 cIKpxU jykdff">
<div class="navbar___StyledDiv-sc-169lgwj-2 edKxSR">
<div class="navbar___StyledDiv2-sc-169lgwj-3 jEdftS">
<a alt="home" href="{{.IndexUrl}}" class="sc-dlfnbm bcaJjD">
<div style="width:108px;height:45px" class="gatsby-image-wrapper navbar___StyledGatsbyImage-sc-169lgwj-1 hkwdFQ">
<img src="{{replaceImage .Logo}}" style="height:38px" alt="logo" />
</div>
</a></div>
<nav id="nav-menu" class="nav__NavElement-sc-16m3hoy-0 fJyXSv">
<ul class="nav___StyledUl-sc-16m3hoy-1 fkavMS">
<li class="item__ListItem-a71004-0 kNlUlw">
<a href="{{.IndexUrl}}" class="item__NavLink-a71004-1 koaVlp">{{ lang "home"}}</a>
</li>
{{if .HasAbout }}
<li class="item__ListItem-a71004-0 kNlUlw">
<a href="{{.AboutUrl}}" class="item__NavLink-a71004-1 koaVlp">{{ lang "about" }}</a>
</li>
{{end}}
{{if .HasContact }}
<li class="item__ListItem-a71004-0 kNlUlw">
<a href="{{.ContactUrl}}" class="item__NavLink-a71004-1 jrTajz">{{ lang "contact" }}</a>
</li>
{{end}}
{{if .HasPolicy }}
<li class="item__ListItem-a71004-0 kNlUlw">
<a href="{{.PolicyUrl}}" class="item__NavLink-a71004-1 koaVlp">{{ lang "policy"}}</a>
</li>
{{end}}
</ul>
</nav>
</div>
</header>
<main class="sc-eCssSg layout___StyledMain-sc-1xvv2zr-0 hmocIu gLJbUw">
<section class="hero__Section-sc-1hsfj45-0 eefNJY">
<div class="hero__Wrapper-sc-1hsfj45-1 hOYLtp">
<h1 class="hero___StyledH-sc-1hsfj45-2 ivMdwN">{{lang "contact"}}</h1>
</div>
</section>
<div class="pages__Wrapper-sc-1nbib7n-1 gVhHph">
<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>
</div>
</main>
<footer class="footer__FooterStyle-sc-1cfpe4a-0 cgVTtX">
<footer class="footer__FooterWrapper-sc-1cfpe4a-1 eYYwoG">
<div class="footer__CopyWrite-sc-1cfpe4a-2 bUdvev"><span>{{.Copyright}}</span></div>
<ul class="nav-list__List-sc-1xtkge0-0 aBAOU">
<li class="nav-list___StyledLi-sc-1xtkge0-2 fTpVeh"><a href="{{.IndexUrl}}"
class="nav-list__NavLink-sc-1xtkge0-1 bPtUiu">{{ lang "home"}}</a></li>
<li class="nav-list___StyledLi-sc-1xtkge0-2 fTpVeh"><a href="{{.AboutUrl}}"
class="nav-list__NavLink-sc-1xtkge0-1 bPtUiu">{{ lang "about"}}</a></li>
<li class="nav-list___StyledLi-sc-1xtkge0-2 fTpVeh"><a href="{{.ContactUrl}}"
class="nav-list__NavLink-sc-1xtkge0-1 bPtUiu">{{ lang "contact"}}</a></li>
<li class="nav-list___StyledLi-sc-1xtkge0-2 fTpVeh"><a href="{{.PolicyUrl}}"
class="nav-list__NavLink-sc-1xtkge0-1 bPtUiu">{{ lang "policy"}}</a></li>
</ul>
</footer>
</footer>
</div>
</div>
</div>
</body>
</html>