54 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
| [viewBag]
 | |
| ==
 | |
|         </main>
 | |
| 
 | |
|         <footer class="py-12 bg-white border-t-4 border-sky-200">
 | |
|             <div class="container">
 | |
|                 <div class="grid gap-5 md:grid-cols-[repeat(4,max-content)] justify-between">
 | |
|                     <div>
 | |
|                         <img class="w-20 h-auto mr-6" {{'logos/wappen.png' | resize('original', '128|1280:192|1536:256')}}>
 | |
|                     </div>
 | |
|                     <div>
 | |
|                         <h3 class="font-arvo text-sky-900 text-lg mb-3">Links</h3>
 | |
|                         {% for link in footmenu.menuItems %}
 | |
|                             {% partial 'ui/menulink' title=link.title active=link.isActive link=link.url class=class blank=link.blank %}
 | |
|                         {% endfor %}
 | |
|                     </div>
 | |
|                     <div>
 | |
|                         <h3 class="font-arvo text-sky-900 text-lg mb-3">Kontakt</h3>
 | |
|                         <p>DPSG Stamm Silva</p>
 | |
|                         <p>Adolf-Kolping-Str 47</p>
 | |
|                         <p>42719 Solingen</p>
 | |
|                         <p><a class="font-semibold text-sky-900 mt-2 block" href="mailto:{{html_email('post@stamm-silva.de')}}">{{html_email('post@stamm-silva.de')}}</a></p>
 | |
|                     </div>
 | |
| 
 | |
|                     <div class="flex justify-evenly xs:justify-start xs:space-x-10">
 | |
|                         <a href="https://www.facebook.com/stammsilva" target="_BLANK" class="rounded-full w-10 h-10 flex items-center justify-center bg-sky-200 hover:bg-sky-300 duration-300">
 | |
|                             {% partial 'ui/sprite' icon='facebook' class='w-6 h-6 text-sky-900' %}
 | |
|                         </a>
 | |
|                         <a href="https://www.instagram.com/dpsg_stamm_silva/" target="_BLANK" class="rounded-full w-10 h-10 flex items-center justify-center bg-sky-200 hover:bg-sky-300 duration-300">
 | |
|                             {% partial 'ui/sprite' icon='instagram' class='w-6 h-6 text-sky-900' %}
 | |
|                         </a>
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </footer>
 | |
| 
 | |
|         {% scripts %}
 | |
| 
 | |
|         <script>
 | |
|           var _paq = window._paq = window._paq || [];
 | |
|           /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
 | |
|           _paq.push(['trackPageView']);
 | |
|           _paq.push(['enableLinkTracking']);
 | |
|           (function() {
 | |
|             var u="//stamm-silva.de/";
 | |
|             _paq.push(['setTrackerUrl', u+'matomo.php']);
 | |
|             _paq.push(['setSiteId', '2']);
 | |
|             var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
 | |
|             g.async=true; g.src=u+'proxy.php'; s.parentNode.insertBefore(g,s);
 | |
|           })();
 | |
|         </script>
 | |
|     </body>
 | |
| </html>
 |