138 lines
		
	
	
	
		
			4.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
	
		
			4.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
 | |
| 
 | |
| {% load staticfiles cms_tags menu_tags sekizai_tags  menu_tags %}
 | |
| 
 | |
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
| 
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <meta name="description" content="">
 | |
|     <meta name="author" content="">
 | |
| 
 | |
|     <title>Digital Glarus - {% block title %}Welcome{% endblock %}</title>
 | |
| 
 | |
|     <!-- Favicon -->
 | |
|     <link rel="shortcut icon" href="{% static 'digitalglarus/img/favicon.ico' %}"/>
 | |
| 
 | |
|     <!-- Bootstrap Core CSS -->
 | |
|     <link href="{% static 'digitalglarus/css/bootstrap.min.css' %}" rel="stylesheet">
 | |
| 
 | |
|     <!-- Custom CSS -->
 | |
|     <link href="{% static 'digitalglarus/css/business-casual.css' %}" rel="stylesheet">
 | |
|     <link href="{% static 'digitalglarus/css/login.css' %}" rel="stylesheet">
 | |
| 
 | |
|     <!-- Fonts -->
 | |
|     <link href="//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
 | |
|           rel="stylesheet" type="text/css">
 | |
|     <link href="//fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic"
 | |
|           rel="stylesheet" type="text/css">
 | |
|     <link href="{% static 'digitalglarus/bower_components/font-awesome/css/font-awesome.min.css' %}"
 | |
|           rel="stylesheet" type="text/css">
 | |
| 
 | |
|     {% render_block "css" postprocessor "compressor.contrib.sekizai.compress" %}
 | |
|     {% render_block "js" postprocessor "compressor.contrib.sekizai.compress" %}
 | |
| 
 | |
|     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
 | |
|     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
 | |
|     <!--[if lt IE 9]>
 | |
|         <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
 | |
|         <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
 | |
|     <![endif]-->
 | |
| 
 | |
|     <!-- Google analytics -->
 | |
|     {% include 'google_analytics.html' %}
 | |
|     <!-- End Google Analytics -->
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| {% cms_toolbar %}
 | |
| <div class="pull-right u_P user">
 | |
|     {% if request.user.is_authenticated %}
 | |
|         <div class="user_loggedin">
 | |
|             <h4><a href="{% url 'membership' %}">{{ request.user.name }}</a>
 | |
|                 <a href="{% url 'logout_glarus' %}"><i class="fa fa-1x fa-sign-out"
 | |
|                                                        aria-hidden="true"></i></a>
 | |
|             </h4>
 | |
|         </div>
 | |
|     {% else %}
 | |
|         <a href="{% url 'login_glarus' %}"><h4>Login</h4></a>
 | |
|     {% endif %}
 | |
| </div>
 | |
| <div class="brand">Digital Glarus</div>
 | |
| <div class="address-bar">The Swiss IT Valley | Schwanden, 8762 GL Switzerland | From 2015.10.13</div>
 | |
| <div>{% language_chooser "language_chooser.html" %}</div>
 | |
| 
 | |
| <!-- Navigation -->
 | |
| <nav class="navbar navbar-default" role="navigation">
 | |
| 
 | |
|     <div class="container">
 | |
|         <!-- Brand and toggle get grouped for better mobile display -->
 | |
| 
 | |
|         <div class="navbar-header">
 | |
|             <button type="button" class="navbar-toggle" data-toggle="collapse"
 | |
|                     data-target="#bs-example-navbar-collapse-1">
 | |
|                 <span class="sr-only">Toggle navigation</span>
 | |
|                 <span class="icon-bar"></span>
 | |
|                 <span class="icon-bar"></span>
 | |
|                 <span class="icon-bar"></span>
 | |
|             </button>
 | |
|             <!-- navbar-brand is hidden on larger screens, but visible when the menu is collapsed -->
 | |
|             <a class="navbar-brand" href="index.html">Digital Glarus</a>
 | |
|         </div>
 | |
|         <!-- Collect the nav links, forms, and other content for toggling -->
 | |
|         <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
 | |
|             <ul class="nav navbar-nav">
 | |
|                 <li>
 | |
|                     <a href="{% url 'digitalglarus:landing' %}">Home</a>
 | |
|                 </li>
 | |
|                 {% show_menu_below_id "digital-glarus-page" 0 %}
 | |
|                 <li>
 | |
|                     <a href="{% url 'digitalglarus:supporters' %}">Supporters</a>
 | |
|                 </li>
 | |
|                 <li>
 | |
|                     <a href="{% url 'digitalglarus:blog' %}">Blog</a>
 | |
|                 </li>
 | |
|             </ul>
 | |
|         </div>
 | |
|         <!-- /.navbar-collapse -->
 | |
|     </div>
 | |
|     <!-- /.container -->
 | |
| </nav>
 | |
| 
 | |
| <div class="container">
 | |
|     {% block content %} {% endblock %}
 | |
| </div>
 | |
| <!-- /.container -->
 | |
| 
 | |
| <footer>
 | |
|     <div class="container">
 | |
|         <div class="row">
 | |
|             <div class="col-lg-12 text-center">
 | |
|                 <p class="text-center">Copyright © <a href="http://www.ungleich.ch">ungleich GmbH
 | |
|                     {% now "Y" %}</a></p>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </footer>
 | |
| 
 | |
| <!-- jQuery -->
 | |
| <script src="{% static 'digitalglarus/js/jquery.js' %}"></script>
 | |
| 
 | |
| <!-- Bootstrap Core JavaScript -->
 | |
| <script src="{% static 'digitalglarus/js/bootstrap.min.js' %}"></script>
 | |
| <script src="{% static 'digitalglarus/js/digital.glarus.js' %}"></script>
 | |
| 
 | |
| <!-- Script to Activate the Carousel -->
 | |
| <script>
 | |
|     $('.carousel').carousel({
 | |
|         interval: 5000 //changes the speed
 | |
|     })
 | |
| </script>
 | |
| 
 | |
| </body>
 | |
| 
 | |
| </html>
 |