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.
127 lines
3.8 KiB
127 lines
3.8 KiB
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>{{.Title}}</title>
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/style-v21.css"}}" />
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- Header
|
|
============================================== -->
|
|
<header class="internal">
|
|
<div class="header__wrapper">
|
|
<div class="row">
|
|
<div class="columns header__logo">
|
|
<a href="{{.IndexUrl}}"><img src="{{replaceImage .Logo}}"/></a>
|
|
</div>
|
|
|
|
<div class="columns header__nav">
|
|
|
|
<!-- Navigation
|
|
============================================== -->
|
|
<nav aria-label="Primary">
|
|
<ul>
|
|
|
|
|
|
<li><a href="{{.IndexUrl}}" class="buttons">{{ lang "home"}}</a></li>
|
|
{{if .HasAbout }}
|
|
<li><a href="{{.AboutUrl}}" class="buttons">{{ lang "about"}}</a></li>
|
|
{{end}}
|
|
{{if .HasContact }}
|
|
<li><a href="{{.ContactUrl}}" class="buttons">{{ lang "contact"}}</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header><!-- /Header -->
|
|
|
|
|
|
|
|
<div class="row content">
|
|
<main id="main" class="columns primary">
|
|
<div class="tymbrel-row blog-feed" style="height: 65vh;padding: 20px;">
|
|
<div id="breadcrumb">
|
|
<a href="{{.IndexUrl}}">{{lang "home"}}</a> /
|
|
<a href="#">{{lang "contact"}}</a>
|
|
</div>
|
|
<h1 style="background:none;color: #000;text-align: left;padding: 0;" id="page-title">{{lang "contact"}}</h1>
|
|
<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%;cursor: pointer;background-color: dodgerblue;color: #fff;">{{lang "about_send"}}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<!-- Footer
|
|
============================================== -->
|
|
<footer>
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="columns" style="margin: auto;">
|
|
<div class="title">{{lang "related"}}</div>
|
|
<ul>
|
|
<li><a class="first" href="{{.IndexUrl}}">{{ lang "home"}}</a></li>
|
|
{{if .HasAbout }}
|
|
<li><a class="first" href="{{.AboutUrl}}">{{ lang "about"}}</a></li>
|
|
{{end}}
|
|
{{if .HasContact }}
|
|
<li><a class="first" href="{{.ContactUrl}}">{{ lang "contact"}}</a></li>
|
|
{{end}}
|
|
{{if .HasPolicy }}
|
|
<li><a class="first" href="{{.PolicyUrl}}">{{ lang "policy"}}</a></li>
|
|
{{end}}
|
|
</ul>
|
|
</div>
|
|
</div><!-- /row -->
|
|
|
|
<div role="contentinfo" class="copyright">
|
|
|
|
<div class="row">
|
|
<div class="columns large-4 " style="width: auto;margin: auto;">
|
|
<p style="text-align: center;">{{.Copyright}}</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div><!-- /row -->
|
|
|
|
</footer>
|
|
|
|
|
|
</body>
|
|
<!--
|
|
S: app01
|
|
C: 2754
|
|
D: 2022-11-23 03:31:30
|
|
V: 3336
|
|
T: 0.0297
|
|
-->
|
|
|
|
</html> |