first commit
This commit is contained in:
36
apps/frontend/templates/theme/giallo8/_fonts.html
Normal file
36
apps/frontend/templates/theme/giallo8/_fonts.html
Normal file
@@ -0,0 +1,36 @@
|
||||
{assign var='font_style' value=$theme_config->getConfigParameter('layout_config.font_style')}
|
||||
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap" rel="preload" as="style">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap" rel="stylesheet" type="text/css">
|
||||
|
||||
{if $font_style == 'poppins'}
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,700&display=swap" rel="preload" as="style">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,700&display=swap" rel="stylesheet" type="text/css">
|
||||
{literal}
|
||||
<style>
|
||||
body
|
||||
{
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
</style>
|
||||
{/literal}
|
||||
{elseif $font_style == 'pt_serif'}
|
||||
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="preload" as="style">
|
||||
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet" type="text/css">
|
||||
{literal}
|
||||
<style>
|
||||
body
|
||||
{
|
||||
font-family: 'PT Serif', serif;
|
||||
}
|
||||
#nav-menu>.navbar-nav>li>a
|
||||
{
|
||||
font-weight: 400;
|
||||
}
|
||||
</style>
|
||||
{/literal}
|
||||
{else}
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap" rel="preload" as="style">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap" rel="stylesheet" type="text/css">
|
||||
{/if}
|
||||
|
||||
{include_file id="_script_theme"}
|
||||
15
apps/frontend/templates/theme/giallo8/_footer.html
Normal file
15
apps/frontend/templates/theme/giallo8/_footer.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="container">
|
||||
<div class="navbar navbar-default clearfix" role="navigation">
|
||||
<div id="accordion_footer" class="panel-group row">
|
||||
<div class="col-xs-12 col-sm-8{if $theme_config->getConfigParameter('layout_config.footer_webpage_links') == 'rows'} webpage-rows{/if}">
|
||||
{st_get_component module="stWebpageFrontend" component="footerWebpage"}
|
||||
</div>
|
||||
<!-- <div class="foot-group list-group col-xs-12 col-sm-4 verify"></div> -->
|
||||
<div id="newsletter" class="list-group col-xs-12 col-sm-4 pull-right">
|
||||
{st_get_component module="stNewsletterFrontend" component="newsletter"}
|
||||
{st_get_component module="stSocialLinksFrontend" component="show"}
|
||||
</div>
|
||||
</div>
|
||||
{st_get_component module="stFrontendMain" component="copyright" params="open='$open'"}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user