Add Landing Page Template

main
Georg Krause 2019-05-15 22:04:41 +02:00
parent 986ff6acfa
commit 02e409b020
1 changed files with 138 additions and 0 deletions

View File

@ -0,0 +1,138 @@
<!doctype html>
<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ SITE_SUBHEADING }}">
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/pure-min.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/grids-responsive-min.css">
<!--<![endif]-->
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/layouts/marketing-old-ie.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/layouts/marketing.css">
<!--<![endif]-->
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/responsive-style.css">
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css">
<link rel="icon" type="image/x-icon" href="{{ SITEURL }}/theme/images/luppp.svg" sizes="32x32">
</head>
<body>
<div class="header">
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
<a class="pure-menu-heading" href="">{{ SITENAME }}</a>
<ul class="pure-menu-list">
{% for title, link in LINKS %}
<li class="pure-menu-item"><a href="{{ link }}" class="pure-menu-link">{{ title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="splash-container">
<div class="splash">
<h1 class="splash-head">{{ SPLASH_HEADING }}</h1>
<p class="splash-subhead">
{{ SPLASH_SUBHEADING }}
</p>
<p>
<a href="#GetLuppp" class="pure-button pure-button-primary">
<span class="icon"></span>
<span class="button-text">{{ SPLASH_BUTTON_TEXT }}</span>
</a>
</p>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<h2 class="content-head is-center">{{ FEATURES_HEADING}}</h2>
<div class="pure-g">
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
{{ FEATURES_FIRST_HEADING }}
</h3>
<p>
{{ FEATURES_FIRST_CONTENT }}
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
{{ FEATURES_SECOND_HEADING }}
</h3>
<p>
{{ FEATURES_SECOND_CONTENT }}
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
{{ FEATURES_THIRD_HEADING }}
</h3>
<p>
{{ FEATURES_THIRD_CONTENT }}
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
{{ FEATURES_FOURTH_HEADING }}
</h3>
<p>
{{ FEATURES_FOURTH_CONTENT }}
</p>
</div>
</div>
</div>
<div class="ribbon l-box-lrg pure-g">
<div class="l-box-lrg is-center pure-u-1 pure-u-md-1-2 pure-u-lg-2-5">
<img width="200" alt="File Icons" class="pure-img-responsive"
src="{{ SITEURL }}/theme/images/luppp.svg">
</div>
<div class="pure-u-1 pure-u-md-1-2 pure-u-lg-3-5">
<h2 class="content-head content-head-ribbon">{{ RIBBON_HEADING }}</h2>
<p>
{{ RIBBON_CONTENT }}
</p>
</div>
</div>
<div class="content">
<h2 id="GetLuppp" class="content-head is-center">{{ page.title }}</h2>
<div class="pure-g">
<div class="l-box-lrg pure-u-md-1-5"></div>
<div class="l-box-lrg pure-u-1 pure-u-md-3-5">
{{ page.content }}
</div>
</div>
</div>
<div class="footer l-box is-center">
{{ FOOTER }}
</div>
</div>
</body>
</html>