75 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 		<div id="up-to-top" class="row">
 | |
| 			<div class="small-12 columns" style="text-align: right;">
 | |
| 				<a class="entypo entypo-48" href="#top-of-page">  </a>
 | |
| 			</div><!-- /.small-12.columns -->
 | |
| 		</div><!-- /.row -->
 | |
| 
 | |
| 
 | |
| 		<footer id="footer-content" class="bg-grau">
 | |
| 			<div id="footer">
 | |
| 				<div class="row">
 | |
| 					<div class="medium-6 large-5 columns">
 | |
| 						<h5 class="shadow-black">{{ site.data.language.about_website }}</h5>
 | |
| 
 | |
| 						<p class="shadow-black">
 | |
| 							{{ site.description }}
 | |
| 							<a href="{{ site.url }}/about/">{{ site.data.language.more }}</a>
 | |
| 						</p>
 | |
| 					</div><!-- /.large-6.columns -->
 | |
| 
 | |
| 
 | |
| 					<div class="small-6 medium-3 large-3 large-offset-1 columns">
 | |
| 						<nav>
 | |
| 							<ul class="no-bullet shadow-black sans">
 | |
| 							{% for service_item in site.data.services %}
 | |
| 								{% if service_item.url contains 'http' %}
 | |
| 									{% assign domain = '' %}
 | |
| 									{% else %}
 | |
| 									{% assign domain = site.url %}
 | |
| 								{% endif %}
 | |
| 
 | |
| 								{% if forloop.first == true %}
 | |
| 									<li class="shadow-black font-size-h5 sans">{{ service_item.menu_name }}</li>
 | |
| 								{% else %}
 | |
| 									<li {% if service_item.class %}class="{{ service_item.class }}" {% endif %}>
 | |
| 										<a href="{{ domain }}{{ service_item.url }}" {% if service_item.url contains 'http' %}target="_blank" {% endif %} title="{{ service_item.title }}">{{ service_item.name }}</a>
 | |
| 									</li>
 | |
| 								{% endif %}
 | |
| 							{% endfor %}
 | |
| 							</ul>
 | |
| 						</nav>
 | |
| 					</div><!-- /.large-4.columns -->
 | |
| 
 | |
| 
 | |
| 					<div class="small-6 medium-3 large-3 columns">
 | |
| 								<h5 class="shadow-black">{{ site.data.language.thank_you }}</h5>
 | |
| 								<ul class="no-bullet shadow-black">
 | |
| 									<li><a href="http://entypo.com/">Icons by Daniel Bruce</a></li>
 | |
| 									<li><a href="http://foundation.zurb.com/">Built on Foundation</a></li>
 | |
| 									<li><a href="http://unsplash.com/">Images by Unsplash</a></li>
 | |
| 									<li><a href="http://srobbin.com/jquery-plugins/backstretch/">Using Backstretch by Scott Robbin</a></li>
 | |
| 								</ul>
 | |
| 					</div><!-- /.large-3.columns -->
 | |
| 				</div><!-- /.row -->
 | |
| 
 | |
| 			</div><!-- /#footer -->
 | |
| 
 | |
| 
 | |
| 			<div id="subfooter">
 | |
| 				<nav class="row">
 | |
| 					<section id="subfooter-left" class="b30 small-12 medium-6 columns">
 | |
| 						<ul class="inline-list">
 | |
| 							<li>We ♥ <a style="display:inline;" href="http://jekyllrb.com/" target="_blank">Jekyll</a> & <a style="display:inline;" href="http://phlow.github.io/feeling-responsive/">Feeling Responsive</a> </li>
 | |
| 						</ul>
 | |
| 					</section>
 | |
| 
 | |
| 					<section id="subfooter-right" class="small-12 medium-6 columns social-icons">
 | |
| 						<ul class="inline-list">
 | |
| 						{% for social_item in site.data.socialmedia %}
 | |
| 							<li><a href="{{ social_item.url }}" target="_blank" id="{{ social_item.id }}" class="{{ social_item.class }}" title="{{ social_item.title }}">{{ social_item.entypo }}</a></li>
 | |
| 						{% endfor %}
 | |
| 						</ul>
 | |
| 					</section>
 | |
| 				</nav>
 | |
| 			</div><!-- /#subfooter -->
 | |
| 		</footer>
 |