:Merge remote-tracking branch 'remotes/origin/feature/digital.glarus.german' into develop
Conflicts: dynamicweb/settings-test/__init__.py requirements.txt templates/cms/ungleich.ch/_footer.html templates/cms/ungleich.ch/_header_base.html templates/cms/ungleich.ch/_menu.html templates/cms/ungleich.ch/base.html templates/cms/ungleich.ch/blog.html templates/cms/ungleich.ch/page.html templates/cms/ungleichch/__init__.py templates/cms/ungleichch/_footer.html templates/cms/ungleichch/_header_base.html templates/cms/ungleichch/_menu.html templates/cms/ungleichch/base.html templates/cms/ungleichch/blog.html templates/cms/ungleichch/page.html ungleich/templates/cms/ungleichch/_footer.html ungleich/templates/cms/ungleichch/_header_base.html ungleich/templates/cms/ungleichch/_menu.html ungleich/templates/cms/ungleichch/base_ungleich.html ungleich/templates/cms/ungleichch/blog_ungleich.html ungleich/templates/cms/ungleichch/page.html
This commit is contained in:
		
				commit
				
					
						4389230b60
					
				
			
		
					 18 changed files with 678 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -175,8 +175,13 @@ USE_L10N = True
 | 
			
		|||
USE_TZ = True
 | 
			
		||||
 | 
			
		||||
LANGUAGES = (
 | 
			
		||||
<<<<<<< HEAD:dynamicweb/settings-test/__init__.py
 | 
			
		||||
    ('en-us', _('English')),
 | 
			
		||||
    ('de', _('Deutsch')),
 | 
			
		||||
=======
 | 
			
		||||
    ('en-us', _('US English')),
 | 
			
		||||
    ('de', _('German')),
 | 
			
		||||
>>>>>>> remotes/origin/feature/digital.glarus.german:dynamicweb/settings.py
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
LANGUAGE_CODE = 'en-us'
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,18 @@
 | 
			
		|||
Django==1.9.4
 | 
			
		||||
aldryn-newsblog
 | 
			
		||||
wheel
 | 
			
		||||
=======
 | 
			
		||||
# lib
 | 
			
		||||
psycopg2>=2.6
 | 
			
		||||
Pillow>=2
 | 
			
		||||
html5lib==0.999
 | 
			
		||||
six==1.3.0 #compat
 | 
			
		||||
python-memcached
 | 
			
		||||
 | 
			
		||||
# django
 | 
			
		||||
django==1.7.10
 | 
			
		||||
 | 
			
		||||
#django-assets
 | 
			
		||||
django-bootstrap3
 | 
			
		||||
django-cms
 | 
			
		||||
django-compressor
 | 
			
		||||
| 
						 | 
				
			
			@ -44,6 +56,40 @@ Pillow>=2
 | 
			
		|||
django-filer
 | 
			
		||||
cmsplugin-filer
 | 
			
		||||
django-reversion
 | 
			
		||||
=======
 | 
			
		||||
 | 
			
		||||
# django-cms-plugins
 | 
			
		||||
djangocms-admin-style==0.2.5
 | 
			
		||||
djangocms-text-ckeditor>=2.4
 | 
			
		||||
django-select2>=4.3.1
 | 
			
		||||
djangocms-blog>=0.4.0
 | 
			
		||||
 | 
			
		||||
djangocms-flash
 | 
			
		||||
djangocms-googlemap
 | 
			
		||||
djangocms-inherit
 | 
			
		||||
djangocms-teaser
 | 
			
		||||
 | 
			
		||||
djangocms-link
 | 
			
		||||
djangocms-snippet
 | 
			
		||||
djangocms-style
 | 
			
		||||
djangocms-column
 | 
			
		||||
djangocms-grid
 | 
			
		||||
djangocms-oembed
 | 
			
		||||
djangocms-table
 | 
			
		||||
 | 
			
		||||
cmsplugin-filer==0.10.1
 | 
			
		||||
 | 
			
		||||
# production
 | 
			
		||||
# circus-web
 | 
			
		||||
# chaussette
 | 
			
		||||
# meinheld
 | 
			
		||||
 | 
			
		||||
# python3 support
 | 
			
		||||
gevent>=1.1a2
 | 
			
		||||
 | 
			
		||||
# djangocms-page-meta
 | 
			
		||||
djangocms-page-meta
 | 
			
		||||
# memcache
 | 
			
		||||
pylibmc
 | 
			
		||||
django_extensions
 | 
			
		||||
django-debug-toolbar
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										11
									
								
								templates/cms/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								templates/cms/__init__.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,11 @@
 | 
			
		|||
# -*- coding: utf-8 -*-
 | 
			
		||||
from django.utils.translation import ugettext_lazy as _
 | 
			
		||||
TEMPLATES = {
 | 
			
		||||
    'digitalglarus/about.html': _('DG.About'),
 | 
			
		||||
    'digitalglarus/contact.html': _('DG.Contact'),
 | 
			
		||||
    'digitalglarus/index.html': _('DG.Home'),
 | 
			
		||||
    'digitalglarus/letscowork.html': _('DG.CoWork'),
 | 
			
		||||
    'digitalglarus/detail.html': _('DG.Detail'),
 | 
			
		||||
    'ungleichch/blog.html': _('Blog'),
 | 
			
		||||
    'ungleichch/page.html': _('Page'),
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										9
									
								
								templates/cms/digitalglarus/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								templates/cms/digitalglarus/__init__.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,9 @@
 | 
			
		|||
# -*- coding: utf-8 -*-
 | 
			
		||||
from django.utils.translation import ugettext_lazy as _
 | 
			
		||||
TEMPLATES = {
 | 
			
		||||
    'about.html': _('DG.About'),
 | 
			
		||||
    'contact.html': _('DG.Contact'),
 | 
			
		||||
    'index.html': _('DG.Home'),
 | 
			
		||||
    'letscowork.html': _('DG.CoWork'),
 | 
			
		||||
    'detail.html': _('DG.Detail'),
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										57
									
								
								templates/cms/digitalglarus/about.html
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										57
									
								
								templates/cms/digitalglarus/about.html
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,57 @@
 | 
			
		|||
{% extends "cms/digitalglarus/base.html" %}
 | 
			
		||||
{% load staticfiles cms_tags %}
 | 
			
		||||
{% block title %}About{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">{% placeholder 'digitalglarus_why_us' %}</h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-md-6">
 | 
			
		||||
      <img class="img-responsive img-border-left" src="{% static 'digitalglarus/img/img_4.png' %}" alt="">
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-md-6">
 | 
			
		||||
      <p>
 | 
			
		||||
	{% placeholder 'digitalglarus_why_us_content' %}
 | 
			
		||||
      </p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="clearfix"></div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">
 | 
			
		||||
	{% placeholder 'digitalglarus_why_glarus' %}
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-4 text-center">
 | 
			
		||||
      <img class="img-responsive" src="{% static 'digitalglarus/img/img_1.jpg' %}" alt="">
 | 
			
		||||
      <h3>
 | 
			
		||||
	{% placeholder 'digitalglarus_why_glarus_beautiful_landscape' %}
 | 
			
		||||
      </h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-4 text-center">
 | 
			
		||||
      <img class="img-responsive" src="{% static 'digitalglarus/img/price_1.jpg' %}" alt="">
 | 
			
		||||
	{% placeholder 'digitalglarus_why_glarus_affordable_price' %}
 | 
			
		||||
      </h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-4 text-center">
 | 
			
		||||
      <img class="img-responsive" src="{% static 'digitalglarus/img/img_3.jpg' %}" alt="">
 | 
			
		||||
      {% placeholder 'digitalglarus_why_glarus_direct_connection_zurich' %}
 | 
			
		||||
      </h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="clearfix"></div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
</div>
 | 
			
		||||
<!-- /.container -->
 | 
			
		||||
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										128
									
								
								templates/cms/digitalglarus/base.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										128
									
								
								templates/cms/digitalglarus/base.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,128 @@
 | 
			
		|||
{% load staticfiles cms_tags menu_tags sekizai_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>
 | 
			
		||||
      {% page_attribute "page_title" %}
 | 
			
		||||
    </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">
 | 
			
		||||
    <!-- 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">
 | 
			
		||||
 | 
			
		||||
    <!-- 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]-->
 | 
			
		||||
    {% render_block "css" postprocessor "compressor.contrib.sekizai.compress" %}
 | 
			
		||||
    {% render_block "js" postprocessor "compressor.contrib.sekizai.compress" %}
 | 
			
		||||
<script>
 | 
			
		||||
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 | 
			
		||||
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
 | 
			
		||||
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 | 
			
		||||
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 | 
			
		||||
 | 
			
		||||
  ga('create', 'UA-62285904-2', 'auto');
 | 
			
		||||
  ga('send', 'pageview');
 | 
			
		||||
 | 
			
		||||
</script>
 | 
			
		||||
</head>
 | 
			
		||||
 | 
			
		||||
<body>
 | 
			
		||||
    {% cms_toolbar %}
 | 
			
		||||
    <div class="brand">Digital Glarus</div>
 | 
			
		||||
    <div class="address-bar">
 | 
			
		||||
      {% placeholder 'digital_glarus_legend' %}
 | 
			
		||||
    </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:letscowork' %}">Crowdfunding</a>
 | 
			
		||||
		    </li>
 | 
			
		||||
		    <li>
 | 
			
		||||
			<a href="{% url 'digitalglarus:home' %}">Home</a>
 | 
			
		||||
		    </li>
 | 
			
		||||
		    <li>
 | 
			
		||||
		      <a href="{% url 'digitalglarus:contact' %}">Contact</a>
 | 
			
		||||
		    </li>
 | 
			
		||||
		    <li>
 | 
			
		||||
			<a href="{% url 'digitalglarus:about' %}">About</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 2015</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>
 | 
			
		||||
							
								
								
									
										65
									
								
								templates/cms/digitalglarus/contact.html
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										65
									
								
								templates/cms/digitalglarus/contact.html
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,65 @@
 | 
			
		|||
{% extends "digitalglarus/base.html" %}
 | 
			
		||||
{% load cms_tags %}
 | 
			
		||||
{% block title %}Contact{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">
 | 
			
		||||
	{% placeholder 'digital_glarus_contact' %}
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-md-8">
 | 
			
		||||
      {% placeholder 'digital_glarus_contact_content'  %}
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-md-4">
 | 
			
		||||
      {% placeholder 'digital_glarus_contact_information' %}
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="clearfix"></div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">Contact
 | 
			
		||||
	<strong>form</strong>
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
      <p>If you want further information on Digital Glarus, please send us a message using the form below.</p>
 | 
			
		||||
      <form action="{% url 'digitalglarus:contact' %}" method="post" role="form">
 | 
			
		||||
	{% csrf_token %}
 | 
			
		||||
	<div class="row">
 | 
			
		||||
	  <div class="form-group col-lg-4">
 | 
			
		||||
	    <label>Name</label>
 | 
			
		||||
	    <input type="text" class="form-control" name="name">
 | 
			
		||||
	  </div>
 | 
			
		||||
	  <div class="form-group col-lg-4">
 | 
			
		||||
	    <label>Email Address</label>
 | 
			
		||||
	    <input type="email" class="form-control" name="email">
 | 
			
		||||
	  </div>
 | 
			
		||||
	  <div class="form-group col-lg-4">
 | 
			
		||||
	    <label>Phone Number</label>
 | 
			
		||||
	    <input type="tel" class="form-control" name="phone_number">
 | 
			
		||||
	  </div>
 | 
			
		||||
	  <div class="clearfix"></div>
 | 
			
		||||
	  <div class="form-group col-lg-12">
 | 
			
		||||
	    <label>Message</label>
 | 
			
		||||
	    <textarea class="form-control" rows="6" name="message"></textarea>
 | 
			
		||||
	  </div>
 | 
			
		||||
	  <div class="form-group col-lg-12">
 | 
			
		||||
	    <input type="hidden" name="save" value="contact">
 | 
			
		||||
	    <button type="submit" class="btn btn-default">Submit</button>
 | 
			
		||||
	  </div>
 | 
			
		||||
	</div>
 | 
			
		||||
      </form>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
</div>
 | 
			
		||||
<!-- /.container -->
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										11
									
								
								templates/cms/digitalglarus/detail.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								templates/cms/digitalglarus/detail.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,11 @@
 | 
			
		|||
<h1>{{ message }}</h1>
 | 
			
		||||
 | 
			
		||||
<ul>
 | 
			
		||||
    <li>{{ message.name }}
 | 
			
		||||
    <li>{{ message.email }}
 | 
			
		||||
    <li>{{ message.phone_number }}
 | 
			
		||||
    <li>{{ message.message }}
 | 
			
		||||
    <li>{{ message.received_date }}
 | 
			
		||||
</ul>
 | 
			
		||||
 | 
			
		||||
<p><a href="{% url 'digitalglarus:index' %}">Back to Main</a>
 | 
			
		||||
							
								
								
									
										99
									
								
								templates/cms/digitalglarus/index.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								templates/cms/digitalglarus/index.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,99 @@
 | 
			
		|||
{% extends "digitalglarus/base.html" %}
 | 
			
		||||
{% load staticfiles %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12 text-center">
 | 
			
		||||
      <div id="carousel-example-generic" class="carousel slide">
 | 
			
		||||
	<!-- Indicators --><!-- Wrapper for slides -->
 | 
			
		||||
	<div class="carousel-inner">
 | 
			
		||||
	  <div class="item active">
 | 
			
		||||
	    <img class="img-responsive img-full" src="{% static 'digitalglarus/img/slide-1.jpg' %}" alt="">
 | 
			
		||||
	  </div>
 | 
			
		||||
	  <div class="item">
 | 
			
		||||
	    <img class="img-responsive img-full" src="{% static 'digitalglarus/img/slide-2.jpg' %}" alt="">
 | 
			
		||||
	  </div>
 | 
			
		||||
	  <div class="item">
 | 
			
		||||
	    <img class="img-responsive img-full" src="{% static 'digitalglarus/img/slide-3.jpg' %}" alt="">
 | 
			
		||||
	  </div>
 | 
			
		||||
	</div>
 | 
			
		||||
 | 
			
		||||
	<!-- Controls -->
 | 
			
		||||
	<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
 | 
			
		||||
	  <span class="icon-prev"></span>
 | 
			
		||||
	</a>
 | 
			
		||||
	<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
 | 
			
		||||
	  <span class="icon-next"></span>
 | 
			
		||||
	</a>
 | 
			
		||||
      </div>
 | 
			
		||||
      <h2 class="brand-before">
 | 
			
		||||
	<small>WELCOME TO</small>
 | 
			
		||||
      </h2>
 | 
			
		||||
      <h1 class="brand-name">Digital Glarus</h1>
 | 
			
		||||
      <hr class="tagline-divider">
 | 
			
		||||
      <h2>
 | 
			
		||||
	<small>By
 | 
			
		||||
	  <strong><a href="http://ungleich.ch">ungleich gmbh</a></strong>
 | 
			
		||||
	</small>
 | 
			
		||||
      </h2>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">
 | 
			
		||||
	{% placeholder 'digital_glarus_build_a_tech_valley' %}
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
      <img class="img-responsive img-border img-left" src="{% static 'digitalglarus/img/intro-pic.jpg' %}" alt="">
 | 
			
		||||
      <hr class="visible-xs">
 | 
			
		||||
      {% placeholder 'digital_glarus_build_a_tech_valley_content' %}
 | 
			
		||||
      <p> </p>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">
 | 
			
		||||
	{% placeholder 'digital_glarus_a_new_area' %}
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
      {% placeholder 'digital_glarus_a_new_area_content' %}
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">
 | 
			
		||||
	{% placeholder 'digital_glarus_why_be_interested' %}
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
      {% placeholder 'digital_glarus_why_be_interested_content' %}
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">
 | 
			
		||||
	{% placeholder 'digital_glarus_where_we_are' %}
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
      {% placeholder 'digital_glarus_where_we_are_content'  %}
 | 
			
		||||
      <p> </p>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										51
									
								
								templates/cms/digitalglarus/letscowork.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								templates/cms/digitalglarus/letscowork.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,51 @@
 | 
			
		|||
{% extends "digitalglarus/base.html" %}
 | 
			
		||||
{% load staticfiles %}
 | 
			
		||||
{% block title %}crowdfunding{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12 text-center">
 | 
			
		||||
      <h1> <span id="date-quantity">99</span> days to go! </h1>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div class="clearfix"></div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <iframe width="980" height="600" src="//www.100-days.net/de/projekt-iframe/start-digital-glarus" frameborder="0" scrolling="auto" class="center-block"></iframe>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="row">
 | 
			
		||||
  <div class="box">
 | 
			
		||||
    <div class="col-lg-12">
 | 
			
		||||
      <hr>
 | 
			
		||||
      <h2 class="intro-text text-center">why
 | 
			
		||||
	<strong>glarus?</strong>
 | 
			
		||||
      </h2>
 | 
			
		||||
      <hr>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-4 text-center">
 | 
			
		||||
      <img class="img-responsive" src="{% static 'digitalglarus/img/img_1.jpg' %}" alt="">
 | 
			
		||||
      <h3>BEAUTIFUL
 | 
			
		||||
	<small> landscape</small>
 | 
			
		||||
      </h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-4 text-center">
 | 
			
		||||
      <img class="img-responsive" src="{% static 'digitalglarus/img/price_1.jpg' %}" alt="">
 | 
			
		||||
      <h3>AFFORDABLE
 | 
			
		||||
	<small>price</small></h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-4 text-center">
 | 
			
		||||
      <img class="img-responsive" src="{% static 'digitalglarus/img/img_3.jpg' %}" alt="">
 | 
			
		||||
      <h3>direct
 | 
			
		||||
	<small> connection to zurich</small>
 | 
			
		||||
      </h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="clearfix"></div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
<!-- /.container -->
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										6
									
								
								templates/cms/ungleichch/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								templates/cms/ungleichch/__init__.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,6 @@
 | 
			
		|||
# -*- coding: utf-8 -*-
 | 
			
		||||
from django.utils.translation import ugettext_lazy as _
 | 
			
		||||
TEMPLATES = {
 | 
			
		||||
    'blog.html': _('Blog'),
 | 
			
		||||
    'page.html': _('Page'),
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										40
									
								
								templates/cms/ungleichch/_footer.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								templates/cms/ungleichch/_footer.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,40 @@
 | 
			
		|||
{% load cms_tags %}
 | 
			
		||||
<hr />
 | 
			
		||||
<!-- Footer -->
 | 
			
		||||
<footer>
 | 
			
		||||
  <div class="container">
 | 
			
		||||
    <div class="row">
 | 
			
		||||
      <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
 | 
			
		||||
	<ul class="list-inline text-center">
 | 
			
		||||
	  <li>
 | 
			
		||||
	    <a href="https://twitter.com/ungleich">
 | 
			
		||||
	      <span class="fa-stack fa-lg">
 | 
			
		||||
		<i class="fa fa-circle fa-stack-2x"></i>
 | 
			
		||||
		<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
 | 
			
		||||
	      </span>
 | 
			
		||||
	    </a>
 | 
			
		||||
	  </li>
 | 
			
		||||
	  <li>
 | 
			
		||||
	    <a href="https://www.linkedin.com/company/ungleich-gmbh">
 | 
			
		||||
	      <span class="fa-stack fa-lg">
 | 
			
		||||
		<i class="fa fa-circle fa-stack-2x"></i>
 | 
			
		||||
		<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
 | 
			
		||||
	      </span>
 | 
			
		||||
	    </a>
 | 
			
		||||
	  </li>
 | 
			
		||||
	  <li>
 | 
			
		||||
	    <a href="https://github.com/ungleich">
 | 
			
		||||
	      <span class="fa-stack fa-lg">
 | 
			
		||||
		<i class="fa fa-circle fa-stack-2x"></i>
 | 
			
		||||
		<i class="fa fa-github fa-stack-1x fa-inverse"></i>
 | 
			
		||||
	      </span>
 | 
			
		||||
	    </a>
 | 
			
		||||
	  </li>
 | 
			
		||||
	</ul>
 | 
			
		||||
	<p class="copyright text-muted text-centered">
 | 
			
		||||
	  {% static_placeholder "footer_copyright" %}
 | 
			
		||||
	</p>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</footer>
 | 
			
		||||
							
								
								
									
										23
									
								
								templates/cms/ungleichch/_header_base.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								templates/cms/ungleichch/_header_base.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,23 @@
 | 
			
		|||
{% load cms_tags staticfiles %}
 | 
			
		||||
<!-- Page Header -->
 | 
			
		||||
<!-- Set your background image for this header on the line below. -->
 | 
			
		||||
<header class="intro-header"
 | 
			
		||||
	{% if request.current_page.ungleichpage %}
 | 
			
		||||
	style="background-image: url('{{ request.current_page.ungleichpage.image.url }}');"
 | 
			
		||||
	{% else %}
 | 
			
		||||
	style="background-image: url('{% static 'blog.ungleich.ch/img/home-bg.jpg'  %}');"
 | 
			
		||||
	{% endif %}
 | 
			
		||||
	>
 | 
			
		||||
 | 
			
		||||
  <div class="container">
 | 
			
		||||
    <div class="row">
 | 
			
		||||
      <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
 | 
			
		||||
	<div class="site-heading">
 | 
			
		||||
	  <h1> {% page_attribute 'page_title'  %}  </h1>
 | 
			
		||||
	  <hr class="small">
 | 
			
		||||
	  <span class="subheading"> {% page_attribute 'meta_description' %}</span>
 | 
			
		||||
	</div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</header>
 | 
			
		||||
							
								
								
									
										36
									
								
								templates/cms/ungleichch/_menu.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								templates/cms/ungleichch/_menu.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,36 @@
 | 
			
		|||
{% load menu_tags staticfiles cms_tags %}
 | 
			
		||||
<!-- Navigation -->
 | 
			
		||||
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
 | 
			
		||||
  <div class="container-fluid">
 | 
			
		||||
    <!-- Brand and toggle get grouped for better mobile display -->
 | 
			
		||||
    <div class="navbar-header page-scroll">
 | 
			
		||||
      <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>
 | 
			
		||||
      <a class="navbar-brand" href="/">
 | 
			
		||||
	<img src="{% static "blog.ungleich.ch/img/logo_white.svg" %}" />
 | 
			
		||||
      </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 navbar-right">
 | 
			
		||||
	{% for child in children %}
 | 
			
		||||
	<li class="child{% if child.selected %} selected{% endif %}{% if child.ancestor %} ancestor{% endif %}{% if child.sibling %} sibling{% endif %}{% if child.descendant %} descendant{% endif %}">
 | 
			
		||||
	  <a href="{{ child.attr.redirect_url|default:child.get_absolute_url }}">{{ child.get_menu_title }}</a>
 | 
			
		||||
	  {% if child.children %}
 | 
			
		||||
	  <ul>
 | 
			
		||||
	    {% show_menu from_level to_level extra_inactive extra_active template "" "" child %}
 | 
			
		||||
	  </ul>
 | 
			
		||||
	  {% endif %}
 | 
			
		||||
	</li>
 | 
			
		||||
	{% endfor %}
 | 
			
		||||
      </ul>
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- /.navbar-collapse -->
 | 
			
		||||
  </div>
 | 
			
		||||
  <!-- /.container -->
 | 
			
		||||
</nav>
 | 
			
		||||
							
								
								
									
										78
									
								
								templates/cms/ungleichch/base.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										78
									
								
								templates/cms/ungleichch/base.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,78 @@
 | 
			
		|||
{% load cms_tags menu_tags sekizai_tags staticfiles bootstrap3 %}
 | 
			
		||||
<!doctype html>
 | 
			
		||||
<html>
 | 
			
		||||
  <head>
 | 
			
		||||
    <title>
 | 
			
		||||
      {% block title %}
 | 
			
		||||
      {% page_attribute "page_title" %}
 | 
			
		||||
      {% endblock %}
 | 
			
		||||
    </title>
 | 
			
		||||
    {% addtoblock "external-css" %}
 | 
			
		||||
    {% bootstrap_css %}
 | 
			
		||||
 | 
			
		||||
    <link href='//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel="stylesheet" type="text/css">
 | 
			
		||||
    <link href='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
 | 
			
		||||
    <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'
 | 
			
		||||
	  rel='stylesheet' type='text/css'>
 | 
			
		||||
 | 
			
		||||
    <!-- 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]-->
 | 
			
		||||
    {% endaddtoblock %}
 | 
			
		||||
 | 
			
		||||
    {% addtoblock "css" %}
 | 
			
		||||
    <link href="{% static 'blog.ungleich.ch/css/clean-blog.css' %}" type="text/css"
 | 
			
		||||
	  rel="stylesheet" medial="all" />
 | 
			
		||||
    {% endaddtoblock %}
 | 
			
		||||
    {% block meta %}
 | 
			
		||||
    <meta charset="UTF-8">
 | 
			
		||||
    <meta name="description" content="{% page_attribute 'meta_description' %}">
 | 
			
		||||
    {% include 'meta.html' %}
 | 
			
		||||
    {% endblock %}
 | 
			
		||||
    {% render_block "external-css" %}
 | 
			
		||||
    {% render_block "css" postprocessor "compressor.contrib.sekizai.compress" %}
 | 
			
		||||
  </head>
 | 
			
		||||
  <body>
 | 
			
		||||
    {% cms_toolbar %}
 | 
			
		||||
    {% show_menu 0 1 100 100 "cms/ungleichch/_menu.html" %}
 | 
			
		||||
    <!-- body -->
 | 
			
		||||
    <!-- Main Content -->
 | 
			
		||||
    {% block base_header %}
 | 
			
		||||
    {% include "cms/ungleichch/_header_base.html"  %}
 | 
			
		||||
    {% endblock %}
 | 
			
		||||
    <div class="container">
 | 
			
		||||
      <div class="row">
 | 
			
		||||
	<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
 | 
			
		||||
	  {% block base_content %}
 | 
			
		||||
	  {% placeholder "default" %}
 | 
			
		||||
	  {% endblock %}
 | 
			
		||||
	</div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- end body -->
 | 
			
		||||
    {% include "cms/ungleichch/_footer.html" %}
 | 
			
		||||
    {% addtoblock "external-js" %}
 | 
			
		||||
    {% bootstrap_javascript %}
 | 
			
		||||
    {% endaddtoblock %}
 | 
			
		||||
    {% addtoblock "js" %}
 | 
			
		||||
    <script>
 | 
			
		||||
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 | 
			
		||||
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
 | 
			
		||||
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 | 
			
		||||
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 | 
			
		||||
 | 
			
		||||
      ga('create', 'UA-62285904-4', 'auto');
 | 
			
		||||
      ga('send', 'pageview');
 | 
			
		||||
 | 
			
		||||
    </script>
 | 
			
		||||
 | 
			
		||||
    <script src="{% static 'blog.ungleich.ch/vendor/js/jquery.min.js' %}" type="text/javascript" />
 | 
			
		||||
    <script src="{% static 'blog.ungleich.ch/js/navbar-scroll-up.js' %}" type="text/javascript" />
 | 
			
		||||
    {% endaddtoblock %}
 | 
			
		||||
    {% render_block "js" postprocessor "compressor.contrib.sekizai.compress" %}
 | 
			
		||||
    {% render_block "external-js" %}
 | 
			
		||||
  </body>
 | 
			
		||||
</html>
 | 
			
		||||
							
								
								
									
										5
									
								
								templates/cms/ungleichch/blog.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								templates/cms/ungleichch/blog.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,5 @@
 | 
			
		|||
{% extends "cms/ungleichch/base.html" %}
 | 
			
		||||
{% block base_content %}
 | 
			
		||||
{% block content %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										3
									
								
								templates/cms/ungleichch/index.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								templates/cms/ungleichch/index.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,3 @@
 | 
			
		|||
{% extends "cms/ungleichch/base.html" %}
 | 
			
		||||
{% block base_content %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
							
								
								
									
										5
									
								
								templates/cms/ungleichch/page.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								templates/cms/ungleichch/page.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,5 @@
 | 
			
		|||
{% extends "cms/ungleichch/base.html" %}
 | 
			
		||||
{% load cms_tags %}
 | 
			
		||||
{% block base_content %}
 | 
			
		||||
{% placeholder "page_content" %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue