diff --git a/digital_glarus/templates/digital_glarus/about.html b/digital_glarus/templates/digital_glarus/about.html new file mode 100755 index 00000000..08a8494e --- /dev/null +++ b/digital_glarus/templates/digital_glarus/about.html @@ -0,0 +1,59 @@ +{% extends "digital_glarus/base.html" %} +{% load staticfiles %} +{% block title %}About{% endblock %} + +{% block content %} +
+
+
+
+

why + Us? +

+
+
+
+ +
+
+

We, the ungleich GmbH, were founded 2013 in Switzerland - however our first incarnation in Germany dates back to 2000. + We have long knowledge in tech industry, and have extensive networks with small to medium tech companies in Switzerland, because we are one of them. We have been working at coworking spaces with these small to medium sized IT companies ; tech-savvy and flexible, tech companies have open culture in work environment, and very often experience difficulty in letting their employees be as creative as possible. We understand and share their needs and problems. This is how we came up with a solution of our own, of finding and providing an attractive working space for technology companies in Switzerland.

+
+
+
+
+ +
+
+
+
+

why + glarus? +

+
+
+
+ +

BEAUTIFUL + landscape +

+
+
+ +

AFFORDABLE + price

+
+
+ +

direct + connection to zurich +

+
+
+
+
+ + + + +{% endblock %} diff --git a/digital_glarus/templates/digital_glarus/base.html b/digital_glarus/templates/digital_glarus/base.html index 69378e9b..7672b674 100644 --- a/digital_glarus/templates/digital_glarus/base.html +++ b/digital_glarus/templates/digital_glarus/base.html @@ -67,7 +67,7 @@ Home
  • - About + About
  • Contact diff --git a/digital_glarus/templates/digital_glarus/contact.html b/digital_glarus/templates/digital_glarus/contact.html index 25eda953..d13157a1 100755 --- a/digital_glarus/templates/digital_glarus/contact.html +++ b/digital_glarus/templates/digital_glarus/contact.html @@ -1,5 +1,4 @@ {% extends "digital_glarus/base.html" %} -{% load staticfiles %} {% block title %}Contact{% endblock %} diff --git a/digital_glarus/urls.py b/digital_glarus/urls.py index ca15fab5..c1ef0c5e 100644 --- a/digital_glarus/urls.py +++ b/digital_glarus/urls.py @@ -6,5 +6,4 @@ urlpatterns = [ url(r'^$', views.index, name='index'), url(r'about$', views.about, name='about'), url(r'contact$', views.contact, name='contact'), - url(r'^(?P[0-9]+)/$', views.detail, name='detail'), ]