summaryrefslogtreecommitdiff
path: root/templates/block--fossee-istos-branding.html.twig
diff options
context:
space:
mode:
authorsanjeevi012019-07-05 15:30:52 +0530
committersanjeevi012019-07-05 15:33:36 +0530
commit85a9d81638d240f3fa9ed01cb139ef33243b379b (patch)
tree5de2a278bd0b3e8c979defa73b24470a56055a3c /templates/block--fossee-istos-branding.html.twig
parente5a79b1f0f70eb0bc413c5b85139617dbe84b07d (diff)
downloadfossee_istos-85a9d81638d240f3fa9ed01cb139ef33243b379b.tar.gz
fossee_istos-85a9d81638d240f3fa9ed01cb139ef33243b379b.tar.bz2
fossee_istos-85a9d81638d240f3fa9ed01cb139ef33243b379b.zip
Initial commit
Diffstat (limited to 'templates/block--fossee-istos-branding.html.twig')
-rwxr-xr-xtemplates/block--fossee-istos-branding.html.twig43
1 files changed, 43 insertions, 0 deletions
diff --git a/templates/block--fossee-istos-branding.html.twig b/templates/block--fossee-istos-branding.html.twig
new file mode 100755
index 0000000..b4f310b
--- /dev/null
+++ b/templates/block--fossee-istos-branding.html.twig
@@ -0,0 +1,43 @@
+
+{% extends "block.html.twig" %}
+{#
+/**
+ * @file
+ * Theme override for a branding block.
+ *
+ * Each branding element variable (logo, name, slogan) is only available if
+ * enabled in the block configuration.
+ *
+ * Available variables:
+ * - site_logo: Logo for site as defined in Appearance or theme settings.
+ * - site_name: Name for site as defined in Site information settings.
+ * - site_slogan: Slogan for site as defined in Site information settings.
+ */
+#}
+{% block content %}
+ {% if site_logo %}
+ <div class="region region-navigation section-footer" style="margin-bottom: 5px; padding-top: 30px;padding-bottom: 30px;width: 1137px; padding-left: 30px; border-radius:8px;" >
+ <a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">
+ <img src="{{ site_logo }}" alt="{{ 'Home'|t }}" />
+ </a>
+ {% endif %}
+ <div class="social_media">
+ {% if show_social_icon %}
+ {% if facebook_url %}
+ <a class="social" href="{{ facebook_url }}" class="facebook" target="_blank" title="{{ 'Facebook'|t }}" ><i class="fab fa-facebook-f"></i></a>
+ {% endif %}
+ {% if google_plus_url %}
+ <a class="social" href="{{ google_plus_url }}" class="google-plus" target="_blank" title="{{ 'Google plus'|t }}" ><i class="fab fa-google-plus-g"></i></a>
+ {% endif %}
+ {% if twitter_url %}
+ <a class="social" href="{{ twitter_url }}" class="twitter" target="_blank" title="{{ 'Twitter'|t }}"><i class="fab fa-twitter"></i></a>
+ {% endif %}
+ {% if linkedin_url %}
+ <a class="social" href="{{ linkedin_url }}" class="linkedin" target="_blank" title="{{ 'Linked In'|t }}"><i class="fab fa-linkedin-in"></i></a>
+ {% endif %}
+ </p>
+ {% endif %}
+ </div>
+ </div>
+{% endblock %}
+ \ No newline at end of file