Merge pull request #146 from fernandomatos/template/tibiacom

Fixes and improvements at template's network box
This commit is contained in:
slawkens 2020-12-26 23:33:44 +01:00 committed by GitHub
commit 64fe0062ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 9 deletions

View File

@ -1,5 +1,3 @@
<?php
$twig->display('networks.html.twig', array(
'topPlayers' => getTopPlayers(5)
));
$twig->display('networks.html.twig');

View File

@ -1,22 +1,20 @@
{% if config['network_facebook'] != '' or config['network_twitter'] != '' %}
<div id="NetworksBox" class="Themebox" style="background-image:url({{ template_path }}/images/themeboxes/networks/networksbox.png);">
{% if config['network_facebook'] is not empty %}
<div id="FacebookBlock">
<div id="FacebookLikeBox">
<div class="fb-like-box fb_iframe_widget" data-href="https://www.facebook.com/{{ config['network_facebook'] }}" data-width="175" data-height="180" data-show-faces="true" data-stream="false" data-border-color="none" data-header="false" fb-xfbml-state="rendered">
<span style="vertical-align: bottom; width: 181px; height: 180px;">
</span>
<span style="vertical-align: bottom; width: 181px; height: 180px;"></span>
</div>
</div>
<div id="FacebookSendBox">
<div class="fb-send fb_iframe_widget" data-href="https://www.facebook.com/{{ config['network_facebook'] }}" data-width="50" data-height="20" fb-xfbml-state="rendered">
<span style="vertical-align: bottom; width: 50px; height: 20px;">
</span>
<span style="vertical-align: bottom; width: 50px; height: 20px;"></span>
</div>
</div>
<div id="FacebookLikes">
<div class="fb-like fb_edge_widget_with_comment fb_iframe_widget" data-href="https://www.facebook.com/{{ config['network_facebook'] }}" data-send="false" data-width="225" data-show-faces="false" fb-xfbml-state="rendered">
<span style="height: 28px; width: 225px;">
</span>
<span style="height: 28px; width: 225px;"></span>
</div>
</div>
</div>
@ -29,3 +27,4 @@
{% endif %}
<div class="Bottom" style="background-image:url({{ template_path }}/images/general/box-bottom.gif);"></div>
</div>
{% endif %}

View File

@ -12,9 +12,16 @@ if(isset($config['boxes']))
<link href="<?php echo $template_path; ?>/basic.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="tools/basic.js"></script>
<script type="text/javascript" src="<?php echo $template_path; ?>/ticker.js"></script>
<?php if(!empty($config['network_twitter'])): ?>
<script id="twitter-wjs" src="<?php echo $template_path; ?>/js/twitter.js"></script>
<?php endif; ?>
<?php if(!empty($config['network_facebook'])): ?>
<script id="facebook-jssdk" async src="<?php echo $template_path; ?>/js/facebook.js"></script>
<link href="<?php echo $template_path; ?>/css/facebook.css" rel="stylesheet" type="text/css">
<?php endif; ?>
<script type="text/javascript">
var loginStatus="<?php echo ($logged ? 'true' : 'false'); ?>";
<?php