ComunicWeb/assets/templates/pages/home/landingPage/home.tpl

60 lines
1.0 KiB
Smarty
Raw Normal View History

2017-05-22 16:33:39 +00:00
<!--
Home landing page
@author Pierre HUBERT
-->
<div id="homeLandingScreen">
2018-04-11 07:24:13 +00:00
<div id="homeMessageContainer">
<div id="homeMessage">
<h1>Comunic</h1>
2018-05-10 08:54:00 +00:00
<h3>[[_landing_main_caption]]</h3>
<div class="learn_more"><a href="{about_url}">Learn more</a></div>
2018-04-11 07:24:13 +00:00
<br />
2018-05-10 08:54:00 +00:00
<a class="btn btn-lg btn-primary" target="create_account">[[_landing_signup_link]]</a>
<a class="btn btn-lg btn-success" target="login">[[_landing_signin_link]]</a>
2018-04-11 07:24:13 +00:00
</div>
2017-05-22 16:33:39 +00:00
</div>
2018-04-11 07:24:13 +00:00
2017-05-22 16:33:39 +00:00
</div>
<!-- Page styles -->
<style type="text/css">
2018-05-05 08:55:36 +00:00
2017-05-22 16:33:39 +00:00
#homeLandingScreen{
2018-05-05 08:55:36 +00:00
background-image: url("{backgroundImage}");
background-position: 0% 50%;
2017-05-22 16:33:39 +00:00
width: 100%;
height: 100%;
position: fixed;
text-align: center;
2018-04-11 07:24:13 +00:00
padding: 10px;
display: table;
top: 0;
}
#homeMessageContainer {
display: table-cell;
vertical-align: middle;
2017-05-22 16:33:39 +00:00
}
2018-04-11 07:24:13 +00:00
#homeMessage {
2018-05-09 14:13:37 +00:00
background-color: rgba(244, 244, 244, 0.38);
2018-04-11 07:24:13 +00:00
max-width: 400px;
padding: 30px;
margin: auto;
border-radius: 5px;
2017-05-22 16:33:39 +00:00
}
2018-04-11 07:24:13 +00:00
#homeMessage .learn_more a {
color: black;
font-size: 110%;
}
2017-05-22 16:33:39 +00:00
</style>