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.
181 lines
5.7 KiB
181 lines
5.7 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="referrer" content="unsafe-url">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/bootstrap.min.css"}}" />
|
|
<link type="text/css" rel="stylesheet" href="{{staticFile "/css/common.css"}}" />
|
|
<link rel="shortcut icon" type="image/png" href="{{replaceImage .Favicon}}" />
|
|
<link href='{{staticFile "/css/allindex.css"}}' rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<header id="header">
|
|
<div class="container header-container">
|
|
<div class="left-side">
|
|
<a
|
|
href="{{.IndexUrl}}"
|
|
rel="noopener"
|
|
class="logo-link"
|
|
><img
|
|
src="{{replaceImage .Logo}}"
|
|
alt="Philips Speech Live"
|
|
/></a>
|
|
<nav
|
|
role="navigation"
|
|
class="main-navigation"
|
|
aria-label="Main navigation"
|
|
>
|
|
<ul id="main-nav" class="menu level-0" role="menubar">
|
|
|
|
<li role="none" id="menu-17" class="">
|
|
<a
|
|
href="{{.IndexUrl}}"
|
|
rel="noopener"
|
|
tabindex="-1"
|
|
role="menuitem"
|
|
aria-haspopup="false"
|
|
aria-expanded="false"
|
|
>{{ lang "home"}}
|
|
</a>
|
|
</li>
|
|
<li role="none" id="menu-17" class="">
|
|
<a
|
|
href="{{.AboutUrl}}"
|
|
rel="noopener"
|
|
tabindex="-1"
|
|
role="menuitem"
|
|
aria-haspopup="false"
|
|
aria-expanded="false"
|
|
>{{ lang "about"}}
|
|
</a>
|
|
</li>
|
|
<li role="none" id="menu-17" class="">
|
|
<a
|
|
href="{{.ContactUrl}}"
|
|
rel="noopener"
|
|
tabindex="-1"
|
|
role="menuitem"
|
|
aria-haspopup="false"
|
|
aria-expanded="false"
|
|
>{{ lang "contact"}}
|
|
</a>
|
|
</li>
|
|
<li role="none" id="menu-17" class="">
|
|
<a
|
|
href="{{.PolicyUrl}}"
|
|
rel="noopener"
|
|
tabindex="-1"
|
|
role="menuitem"
|
|
aria-haspopup="false"
|
|
aria-expanded="false"
|
|
>{{ lang "policy"}}
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
</div>
|
|
</header>
|
|
<!--TYPO3SEARCH_begin-->
|
|
<div id="header-intro"></div>
|
|
<div id="content-area" class="">
|
|
<section id="content" class="container">
|
|
<div id="breadcrumb">
|
|
<a href="{{.IndexUrl}}">{{lang "home"}}</a>
|
|
<a href="#">{{lang "contact"}}</a>
|
|
</div>
|
|
<h1 id="page-title">{{lang "contact"}}</h1>
|
|
<div>
|
|
{{.Contact}}
|
|
<form class="col-12 col-lg-6" style="padding: 2vh 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="background: linear-gradient(to bottom right, #1d4c84, #176498 60%, #5dafd1); border: none; width: 100%; ">{{lang "about_send"}}</button>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<footer id="footer">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-4 order-1 text-center">
|
|
|
|
<img
|
|
src="{{replaceImage .Logo}}"
|
|
width="110"
|
|
height="140"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<div class="bottom-row text-center">
|
|
<nav role="navigation" aria-label="">
|
|
<ul class="menu" id="footer-nav" role="menu">
|
|
<li>
|
|
<a
|
|
href="{{.IndexUrl}}"
|
|
rel="noopener"
|
|
role="menuitem"
|
|
>{{ lang "home"}}</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="{{.AboutUrl}}"
|
|
rel="noopener"
|
|
role="menuitem"
|
|
>{{ lang "about"}}</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="{{.ContactUrl}}"
|
|
rel="noopener"
|
|
role="menuitem"
|
|
>{{ lang "contact"}}</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="{{.PolicyUrl}}"
|
|
rel="noopener"
|
|
role="menuitem"
|
|
>{{ lang "policy"}}</a
|
|
>
|
|
</li>
|
|
|
|
</ul>
|
|
</nav>
|
|
{{.Copyright}}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!--facebook like and share js -->
|
|
<div id="fb-root"></div>
|
|
<script src="{{staticFile " /js/jquery-3.6.0.slim.min.js"}}"></script>
|
|
<script src="{{staticFile " /js/bootstrap.bundle.min.js"}}"></script>
|
|
<script src="{{staticFile " /js/index.js"}}"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |