1.1 --- a/pymove3d.py Sat Jan 18 16:29:40 2014 +0100
1.2 +++ b/pymove3d.py Sat Jan 18 20:06:19 2014 +0100
1.3 @@ -11,6 +11,7 @@
1.4 from flask.ext.babel import Babel
1.5
1.6 from config import LANGUAGES
1.7 +from sayings import get_saying
1.8
1.9 LANGUAGE_SELECTED = "de"
1.10 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
1.11 @@ -27,7 +28,10 @@
1.12 @app.route("/")
1.13 @app.route("/index")
1.14 def index():
1.15 - return render_template(get_locale() + "/index.html")
1.16 + saying, author = get_saying()
1.17 + return render_template(get_locale() + "/index.html",
1.18 + saying = saying,
1.19 + author = author)
1.20
1.21 @app.route('/de')
1.22 def de():
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2.2 +++ b/sayings.py Sat Jan 18 20:06:19 2014 +0100
2.3 @@ -0,0 +1,28 @@
2.4 +from random import shuffle
2.5 +
2.6 +def get_saying():
2.7 + sayings = [('The Zen of Python, by Tim Peters', '__Tim Peters, The Zen of Python'),
2.8 + ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'),
2.9 + ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'),
2.10 + ("Simple is better than complex.", '__Tim Peters, The Zen of Python'),
2.11 + ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'),
2.12 + ("Flat is better than nested.", '__Tim Peters, The Zen of Python'),
2.13 + ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'),
2.14 + ("Readability counts.", '__Tim Peters, The Zen of Python'),
2.15 + ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'),
2.16 + ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'),
2.17 + ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'),
2.18 + ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'),
2.19 + ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'),
2.20 + ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'),
2.21 + ("Now is better than never.", '__Tim Peters, The Zen of Python'),
2.22 + ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'),
2.23 + ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'),
2.24 + ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'),
2.25 + ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'),
2.26 + ]
2.27 +
2.28 + shuffle(sayings)
2.29 +
2.30 + saying, author = sayings[0]
2.31 + return saying, author
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
3.2 +++ b/templates/claims.html Sat Jan 18 20:06:19 2014 +0100
3.3 @@ -0,0 +1,36 @@
3.4 +<div class="container">
3.5 + <div class="col-md-8 col-md-offset-2 module-cite">
3.6 + <div class="text-center">
3.7 + <h1>
3.8 + <span class="cite cite-left">
3.9 + <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3.10 + width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
3.11 + <g id="Ebene_2">
3.12 + <path fill="#FDC91A"
3.13 + d="M16.75,9.188c-2.59,1.824-5.273,4.605-5.273,7.628c0,0.384,0.047,0.673,0.094,0.91
3.14 + c0.625-0.43,1.438-0.574,1.871-0.574c1.777,0,3.309,1.488,3.309,3.263s-1.531,3.358-3.309,3.358c-3.07,0-4.27-3.312-4.27-5.805
3.15 + c0-4.078,3.648-7.965,7.055-9.742L16.75,9.188z M22.828,9.188c-2.594,1.824-5.281,4.605-5.281,7.628
3.16 + c0,0.384,0.051,0.673,0.098,0.91c0.625-0.43,1.441-0.574,1.871-0.574c1.773,0,3.312,1.488,3.312,3.263s-1.539,3.358-3.312,3.358
3.17 + c-3.07,0-4.27-3.312-4.27-5.805c0-4.078,3.645-7.965,7.051-9.742L22.828,9.188z"/>
3.18 + </g>
3.19 + </svg>
3.20 + </span>{{ saying }}
3.21 + <span class="cite cite-right">
3.22 + <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3.23 + width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
3.24 + <g>
3.25 + <path fill="#FDC91A"
3.26 + d="M9.172,22.811c2.59-1.821,5.277-4.604,5.277-7.626c0-0.383-0.049-0.672-0.096-0.91
3.27 + c-0.625,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.311-1.486-3.311-3.262s1.535-3.357,3.311-3.357c3.07,0,4.27,3.311,4.27,5.805
3.28 + c0,4.077-3.646,7.965-7.053,9.737L9.172,22.811z M15.248,22.811c2.592-1.821,5.277-4.604,5.277-7.626
3.29 + c0-0.383-0.049-0.672-0.096-0.91c-0.623,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.312-1.486-3.312-3.262s1.535-3.357,3.312-3.357
3.30 + c3.069,0,4.27,3.311,4.27,5.805c0,4.077-3.646,7.965-7.053,9.737L15.248,22.811z"/>
3.31 + </g>
3.32 + </svg>
3.33 + </span>
3.34 + </h1>
3.35 + <br />
3.36 + <p class="pull-right">{{ author }}</p>
3.37 + </div>
3.38 + </div>
3.39 +
4.1 --- a/templates/de/index.html Sat Jan 18 16:29:40 2014 +0100
4.2 +++ b/templates/de/index.html Sat Jan 18 20:06:19 2014 +0100
4.3 @@ -1,139 +1,105 @@
4.4 {% extends "theme.html" %}
4.5 {% block body %}
4.6 <div class="module module-gallery">
4.7 - <!--img src="static/images/python_blender.jpg" /-->
4.8 - <div class="container">
4.9 - <div class="col-md-6 col-yellow">
4.10 - <div class="module-content">
4.11 - <h1 class="header" style="color:white;padding-top: 45px;margin-bottom:30px;">Der Python Wettbewerb für Mädchen & Jungen ab 13 Jahren</h1>
4.12 - <h4 class="" style="color:white;">3D Objekte mit Python steuern & bewegen</h4>
4.13 - <button type="button" class="btn btn-default"><a href="/competition">Wettbewerbinformationen</a></button>
4.14 - <button type="button" class="btn btn-default"><a href="/dates">Termine</a></button>
4.15 - </div>
4.16 - </div>
4.17 - </div>
4.18 -
4.19 + <!--img src="static/images/python_blender.jpg" /-->
4.20 + <div class="container">
4.21 + <div class="col-md-6 col-yellow">
4.22 + <div class="module-content">
4.23 + <h1 class="header" style="color:white;padding-top: 45px;margin-bottom:30px;">Der Python Wettbewerb für Mädchen & Jungen ab 13 Jahren</h1>
4.24 + <h4 class="" style="color:white;">3D Objekte mit Python steuern & bewegen</h4>
4.25 + <button type="button" class="btn btn-default"><a href="/competition">Wettbewerbinformationen</a></button>
4.26 + <button type="button" class="btn btn-default"><a href="/dates">Termine</a></button>
4.27 + </div>
4.28 + </div>
4.29 + </div>
4.30 </div>
4.31
4.32 <div class="module module-course">
4.33 - <div class="container">
4.34 - <div class="col-md-8 col-md-offset-2 module-cite">
4.35 - <div class="text-center">
4.36 - <h1>
4.37 - <span class="cite cite-left">
4.38 - <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.39 - width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.40 - <g id="Ebene_2">
4.41 - <path fill="#FDC91A" d="M16.75,9.188c-2.59,1.824-5.273,4.605-5.273,7.628c0,0.384,0.047,0.673,0.094,0.91
4.42 - c0.625-0.43,1.438-0.574,1.871-0.574c1.777,0,3.309,1.488,3.309,3.263s-1.531,3.358-3.309,3.358c-3.07,0-4.27-3.312-4.27-5.805
4.43 - c0-4.078,3.648-7.965,7.055-9.742L16.75,9.188z M22.828,9.188c-2.594,1.824-5.281,4.605-5.281,7.628
4.44 - c0,0.384,0.051,0.673,0.098,0.91c0.625-0.43,1.441-0.574,1.871-0.574c1.773,0,3.312,1.488,3.312,3.263s-1.539,3.358-3.312,3.358
4.45 - c-3.07,0-4.27-3.312-4.27-5.805c0-4.078,3.645-7.965,7.051-9.742L22.828,9.188z"/>
4.46 - </g>
4.47 - </svg>
4.48 - </span>Beautiful is better than ugly.
4.49 - Explicit is better than implicit.
4.50 - Simple is better than complex.
4.51 - <span class="cite cite-right">
4.52 - <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.53 - width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.54 - <g>
4.55 - <path fill="#FDC91A" d="M9.172,22.811c2.59-1.821,5.277-4.604,5.277-7.626c0-0.383-0.049-0.672-0.096-0.91
4.56 - c-0.625,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.311-1.486-3.311-3.262s1.535-3.357,3.311-3.357c3.07,0,4.27,3.311,4.27,5.805
4.57 - c0,4.077-3.646,7.965-7.053,9.737L9.172,22.811z M15.248,22.811c2.592-1.821,5.277-4.604,5.277-7.626
4.58 - c0-0.383-0.049-0.672-0.096-0.91c-0.623,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.312-1.486-3.312-3.262s1.535-3.357,3.312-3.357
4.59 - c3.069,0,4.27,3.311,4.27,5.805c0,4.077-3.646,7.965-7.053,9.737L15.248,22.811z"/>
4.60 - </g>
4.61 - </svg>
4.62 - </span>
4.63 - </h1>
4.64 - <p class="pull-right">__Tim Peters, The Zen of Python</p>
4.65 - </div>
4.66 - </div>
4.67 - <div class="col-sm-6">
4.68 - <div class="">
4.69 - <div class="module-heading">
4.70 - <h3 class="module-title">Einsendeschluss</h3>
4.71 - </div>
4.72 - <div class="module-body">
4.73 - <ul class="list-unstyled">
4.74 - <li><strong>1. Mai 2014</strong></li>
4.75 - </ul>
4.76 - </div>
4.77 - </div>
4.78 -
4.79 - <div class="">
4.80 - <div class="module-heading">
4.81 - <h3 class="module-title">Folgen Sie uns auch auf</h3>
4.82 - </div>
4.83 - <div class="module-body">
4.84 - <ul class="list-inline">
4.85 - <li><a href="https://twitter.com/pymove3d"><svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.86 - width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.87 -<g id="Ebene_2">
4.88 - <path fill="#FDC91A" d="M25.5,4h-19C5.125,4,4,5.125,4,6.5v19C4,26.875,5.125,28,6.5,28h19c1.375,0,2.5-1.125,2.5-2.5v-19
4.89 - C28,5.125,26.875,4,25.5,4 M23.143,12.908c0.006,0.153,0.012,0.309,0.012,0.464c0,4.737-3.606,10.2-10.2,10.2
4.90 - c-2.025,0-3.909-0.594-5.495-1.611c0.281,0.033,0.566,0.051,0.855,0.051c1.68,0,3.226-0.572,4.452-1.533
4.91 - c-1.569-0.028-2.892-1.065-3.349-2.489c0.22,0.043,0.444,0.062,0.675,0.062c0.327,0,0.643-0.045,0.945-0.125
4.92 - C9.395,17.598,8.16,16.148,8.16,14.41c0-0.016,0-0.028,0-0.044c0.483,0.268,1.036,0.431,1.624,0.446
4.93 - c-0.962-0.642-1.595-1.739-1.595-2.982c0-0.657,0.177-1.273,0.485-1.802c1.768,2.168,4.409,3.596,7.39,3.745
4.94 - c-0.062-0.264-0.094-0.536-0.094-0.818c0-1.978,1.605-3.583,3.586-3.583c1.029,0,1.963,0.435,2.615,1.132
4.95 - c0.816-0.161,1.583-0.459,2.276-0.871c-0.269,0.839-0.837,1.54-1.576,1.983c0.726-0.084,1.415-0.277,2.06-0.564
4.96 - C24.45,11.771,23.844,12.401,23.143,12.908"/>
4.97 -</g>
4.98 -</svg>
4.99 -</a></li>
4.100 - <li><a href="https://www.facebook.com/pages/pymove3D/676872565661173"><svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.101 - width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.102 -<g id="Ebene_2">
4.103 - <path fill="#FDC91A" d="M28,6.5v19c0,1.375-1.125,2.5-2.5,2.5H20V18h3v-3h-3l0.005-1.673c0-0.9,0.302-1.327,1.597-1.327H23V8h-4
4.104 - c-3,0-3,3-3,4v3h-2v3h2v10H6.5C5.125,28,4,26.875,4,25.5v-19C4,5.125,5.125,4,6.5,4h19C26.875,4,28,5.125,28,6.5"/>
4.105 -</g>
4.106 -</svg></a></li>
4.107 - <li><a href="https://plus.google.com/u/0/communities/107654933404793509482"><svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.108 - width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.109 -<g id="Ebene_3">
4.110 - <g>
4.111 - <path fill="#FDC91A" d="M9.424,20.49C9.267,20.37,9,20.234,9,19.92v-1.064c-1.375,0.021-4.435-0.201-5-3.505v7.373
4.112 - c1.723-1.479,4.686-1.642,5.899-1.646C9.825,20.729,9.586,20.615,9.424,20.49"/>
4.113 - <path fill="#FDC91A" d="M9.988,17.301c0.159,0,0.315-0.021,0.467-0.062c1.336-0.363,2-2.217,1.48-4.131
4.114 - c-0.454-1.664-1.673-2.873-2.9-2.873c-0.159,0-0.317,0.021-0.468,0.062c-0.635,0.172-1.14,0.688-1.424,1.452
4.115 - c-0.291,0.786-0.311,1.737-0.056,2.677C7.54,16.092,8.76,17.301,9.988,17.301"/>
4.116 - <path fill="#FDC91A" d="M25.5,4h-19C5.125,4,4,5.125,4,6.5v6.764C4.751,9.102,10.031,9,10.088,9H16v0.002
4.117 - c0,0.691-0.927,0.82-1.74,0.924c-0.207,0.026-0.441,0.061-0.63,0.104c1.398,0.782,1.534,2.086,1.534,3.81
4.118 - c0,2.041-1.172,3.021-2.036,3.737c-0.54,0.446-0.96,0.8-0.96,1.247c0,0.438,0.59,0.914,1.269,1.467
4.119 - c1.153,0.938,2.733,2.221,2.733,4.395c0,1.357-0.407,2.457-1.187,3.314H25.5c1.375,0,2.5-1.125,2.5-2.5v-19
4.120 - C28,5.125,26.875,4,25.5,4 M27,14h-4v4h-1v-4h-4v-1h4V9h1v4h4V14z"/>
4.121 - <path fill="#FDC91A" d="M9.885,22.354c-0.132,0-0.266,0.006-0.4,0.015c-1.132,0.075-2.172,0.469-2.929,1.103
4.122 - c-0.738,0.618-1.115,1.396-1.061,2.188c0.068,1.01,0.865,1.869,2.01,2.342h4.064c1.438-0.568,2.397-1.688,2.314-2.912
4.123 - C13.779,23.555,12.023,22.354,9.885,22.354"/>
4.124 - </g>
4.125 -</g>
4.126 -</svg>
4.127 -</a></li>
4.128 - </ul>
4.129 - </div>
4.130 - </div>
4.131 -
4.132 - </div>
4.133 -
4.134 - <div class="col-sm-6">
4.135 - <div class="">
4.136 - <div class="module-heading">
4.137 - <h3 class="module-title">Python bewegt die Welt</h3>
4.138 - </div>
4.139 - <div class="module-body">
4.140 - <ul>
4.141 - <li>Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in
4.142 - der Softwareentwicklung eignet. </li>
4.143 - <li>Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin
4.144 - entwickelt worden.</li>
4.145 - <li>Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.</li>
4.146 - </ul>
4.147 - </div>
4.148 - </div>
4.149 - </div>
4.150 + {% include "claims.html" %}
4.151 + <div class="col-sm-6">
4.152 + <div class="">
4.153 + <div class="module-heading">
4.154 + <h3 class="module-title">Einsendeschluss</h3>
4.155 </div>
4.156 + <div class="module-body">
4.157 + <ul class="list-unstyled">
4.158 + <li><strong>1. Mai 2014</strong></li>
4.159 + </ul>
4.160 + </div>
4.161 + </div>
4.162 +
4.163 + <div class="">
4.164 + <div class="module-heading">
4.165 + <h3 class="module-title">Folgen Sie uns auch auf</h3>
4.166 + </div>
4.167 + <div class="module-body">
4.168 + <ul class="list-inline">
4.169 + <li><a href="https://twitter.com/pymove3d"><svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.170 + width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.171 + <g id="Ebene_2">
4.172 + <path fill="#FDC91A" d="M25.5,4h-19C5.125,4,4,5.125,4,6.5v19C4,26.875,5.125,28,6.5,28h19c1.375,0,2.5-1.125,2.5-2.5v-19
4.173 + C28,5.125,26.875,4,25.5,4 M23.143,12.908c0.006,0.153,0.012,0.309,0.012,0.464c0,4.737-3.606,10.2-10.2,10.2
4.174 + c-2.025,0-3.909-0.594-5.495-1.611c0.281,0.033,0.566,0.051,0.855,0.051c1.68,0,3.226-0.572,4.452-1.533
4.175 + c-1.569-0.028-2.892-1.065-3.349-2.489c0.22,0.043,0.444,0.062,0.675,0.062c0.327,0,0.643-0.045,0.945-0.125
4.176 + C9.395,17.598,8.16,16.148,8.16,14.41c0-0.016,0-0.028,0-0.044c0.483,0.268,1.036,0.431,1.624,0.446
4.177 + c-0.962-0.642-1.595-1.739-1.595-2.982c0-0.657,0.177-1.273,0.485-1.802c1.768,2.168,4.409,3.596,7.39,3.745
4.178 + c-0.062-0.264-0.094-0.536-0.094-0.818c0-1.978,1.605-3.583,3.586-3.583c1.029,0,1.963,0.435,2.615,1.132
4.179 + c0.816-0.161,1.583-0.459,2.276-0.871c-0.269,0.839-0.837,1.54-1.576,1.983c0.726-0.084,1.415-0.277,2.06-0.564
4.180 + C24.45,11.771,23.844,12.401,23.143,12.908"/>
4.181 + </g>
4.182 + </svg>
4.183 + </a></li>
4.184 + <li><a href="https://www.facebook.com/pages/pymove3D/676872565661173"><svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.185 + width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.186 + <g id="Ebene_2">
4.187 + <path fill="#FDC91A" d="M28,6.5v19c0,1.375-1.125,2.5-2.5,2.5H20V18h3v-3h-3l0.005-1.673c0-0.9,0.302-1.327,1.597-1.327H23V8h-4
4.188 + c-3,0-3,3-3,4v3h-2v3h2v10H6.5C5.125,28,4,26.875,4,25.5v-19C4,5.125,5.125,4,6.5,4h19C26.875,4,28,5.125,28,6.5"/>
4.189 + </g>
4.190 + </svg></a></li>
4.191 + <li><a href="https://plus.google.com/u/0/communities/107654933404793509482"><svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4.192 + width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
4.193 + <g id="Ebene_3">
4.194 + <g>
4.195 + <path fill="#FDC91A" d="M9.424,20.49C9.267,20.37,9,20.234,9,19.92v-1.064c-1.375,0.021-4.435-0.201-5-3.505v7.373
4.196 + c1.723-1.479,4.686-1.642,5.899-1.646C9.825,20.729,9.586,20.615,9.424,20.49"/>
4.197 + <path fill="#FDC91A" d="M9.988,17.301c0.159,0,0.315-0.021,0.467-0.062c1.336-0.363,2-2.217,1.48-4.131
4.198 + c-0.454-1.664-1.673-2.873-2.9-2.873c-0.159,0-0.317,0.021-0.468,0.062c-0.635,0.172-1.14,0.688-1.424,1.452
4.199 + c-0.291,0.786-0.311,1.737-0.056,2.677C7.54,16.092,8.76,17.301,9.988,17.301"/>
4.200 + <path fill="#FDC91A" d="M25.5,4h-19C5.125,4,4,5.125,4,6.5v6.764C4.751,9.102,10.031,9,10.088,9H16v0.002
4.201 + c0,0.691-0.927,0.82-1.74,0.924c-0.207,0.026-0.441,0.061-0.63,0.104c1.398,0.782,1.534,2.086,1.534,3.81
4.202 + c0,2.041-1.172,3.021-2.036,3.737c-0.54,0.446-0.96,0.8-0.96,1.247c0,0.438,0.59,0.914,1.269,1.467
4.203 + c1.153,0.938,2.733,2.221,2.733,4.395c0,1.357-0.407,2.457-1.187,3.314H25.5c1.375,0,2.5-1.125,2.5-2.5v-19
4.204 + C28,5.125,26.875,4,25.5,4 M27,14h-4v4h-1v-4h-4v-1h4V9h1v4h4V14z"/>
4.205 + <path fill="#FDC91A" d="M9.885,22.354c-0.132,0-0.266,0.006-0.4,0.015c-1.132,0.075-2.172,0.469-2.929,1.103
4.206 + c-0.738,0.618-1.115,1.396-1.061,2.188c0.068,1.01,0.865,1.869,2.01,2.342h4.064c1.438-0.568,2.397-1.688,2.314-2.912
4.207 + C13.779,23.555,12.023,22.354,9.885,22.354"/>
4.208 + </g>
4.209 + </g>
4.210 + </svg>
4.211 + </a></li>
4.212 + </ul>
4.213 + </div>
4.214 + </div>
4.215 +
4.216 + </div>
4.217 +
4.218 + <div class="col-sm-6">
4.219 + <div class="">
4.220 + <div class="module-heading">
4.221 + <h3 class="module-title">Python bewegt die Welt</h3>
4.222 + </div>
4.223 + <div class="module-body">
4.224 + <ul>
4.225 + <li>Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in
4.226 + der Softwareentwicklung eignet. </li>
4.227 + <li>Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin
4.228 + entwickelt worden.</li>
4.229 + <li>Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.</li>
4.230 + </ul>
4.231 + </div>
4.232 + </div>
4.233 + </div>
4.234 + </div>
4.235 </div><!-- course -->
4.236
4.237 {% endblock %}
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
5.2 +++ b/tests/test_sayings.py Sat Jan 18 20:06:19 2014 +0100
5.3 @@ -0,0 +1,6 @@
5.4 +from sayings import get_saying
5.5 +
5.6 +def test_saying():
5.7 + saying, author = get_saying()
5.8 + assert saying is not None
5.9 + assert author is not None