source: OpenWorkouts-current/ow/templates/mytemplate.pt @ 737eb6c

currentfeature/docs
Last change on this file since 737eb6c was 5ec3a0b, checked in by borja <borja@…>, 5 years ago

Imported sources from the old python2-only repository:

  • Modified the code so it is python 3.6 compatible
  • Fixed deprecation warnings, pyramid 1.10.x supported now
  • Fixed deprecation warnings about some libraries, like pyramid-simpleform
  • Added pytest-pycodestyle and pytest-flakes for automatic checks on the source code files when running tests.
  • Added default pytest.ini setup to enforce some default parameters when running tests.
  • Cleaned up the code a bit, catched up with tests coverage.
  • Property mode set to 100644
File size: 3.2 KB
Line 
1<!DOCTYPE html>
2<html lang="${request.locale_name}">
3  <head>
4    <meta charset="utf-8">
5    <meta http-equiv="X-UA-Compatible" content="IE=edge">
6    <meta name="viewport" content="width=device-width, initial-scale=1.0">
7    <meta name="description" content="pyramid web application">
8    <meta name="author" content="Pylons Project">
9    <link rel="shortcut icon" href="${request.static_url('ow:static/pyramid-16x16.png')}">
10
11    <title>Cookiecutter ZODB project for the Pyramid Web Framework</title>
12
13    <!-- Bootstrap core CSS -->
14    <link href="//oss.maxcdn.com/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
15
16    <!-- Custom styles for this scaffold -->
17    <link href="${request.static_url('ow:static/theme.css')}" rel="stylesheet">
18
19    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
20    <!--[if lt IE 9]>
21      <script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY" crossorigin="anonymous"></script>
22      <script src="//oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js" integrity="sha384-f1r2UzjsxZ9T4V1f2zBO/evUqSEOpeaUUZcMTz1Up63bl4ruYnFYeM+BxI4NhyI0" crossorigin="anonymous"></script>
23    <![endif]-->
24  </head>
25
26  <body>
27
28    <div class="starter-template">
29      <div class="container">
30        <div class="row">
31          <div class="col-md-2">
32            <img class="logo img-responsive" src="${request.static_url('ow:static/pyramid.png')}" alt="pyramid web framework">
33          </div>
34          <div class="col-md-10">
35            <div class="content">
36              <h1><span class="font-semi-bold">Pyramid</span> <span class="smaller">ZODB Project</span></h1>
37              <p class="lead">Welcome to <span class="font-normal">${project}</span>, a&nbsp;Pyramid application generated&nbsp;by<br><span class="font-normal">Cookiecutter</span>.</p>
38            </div>
39          </div>
40        </div>
41        <div class="row">
42          <div class="links">
43            <ul>
44              <li><i class="glyphicon glyphicon-cog icon-muted"></i><a href="https://github.com/Pylons/pyramid">Github Project</a></li>
45              <li><i class="glyphicon glyphicon-globe icon-muted"></i><a href="https://webchat.freenode.net/?channels=pyramid">IRC Channel</a></li>
46              <li><i class="glyphicon glyphicon-home icon-muted"></i><a href="https://pylonsproject.org">Pylons Project</a></li>
47            </ul>
48          </div>
49        </div>
50        <div class="row">
51          <div class="copyright">
52            Copyright &copy; Pylons Project
53          </div>
54        </div>
55      </div>
56    </div>
57
58
59    <!-- Bootstrap core JavaScript
60    ================================================== -->
61    <!-- Placed at the end of the document so the pages load faster -->
62    <script src="//oss.maxcdn.com/libs/jquery/1.10.2/jquery.min.js" integrity="sha384-aBL3Lzi6c9LNDGvpHkZrrm3ZVsIwohDD7CDozL0pk8FwCrfmV7H9w8j3L7ikEv6h" crossorigin="anonymous"></script>
63    <script src="//oss.maxcdn.com/libs/twitter-bootstrap/3.0.3/js/bootstrap.min.js" integrity="sha384-s1ITto93iSMDxlp/79qhWHi+LsIi9Gx6yL+cOKDuymvihkfol83TYbLbOw+W/wv4" crossorigin="anonymous"></script>
64  </body>
65</html>
Note: See TracBrowser for help on using the repository browser.