Fang-Pen Lin
2017-05-23 6b56cbe00b9efab532b843573f62df12c93166e6
commit | author | age
a940e1 1 <!DOCTYPE html>
SP 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('tutorial:static/pyramid-16x16.png')}">
10
481296 11     <title>${page.__name__} - Pyramid tutorial wiki (based on
a940e1 12     TurboGears 20-Minute Wiki)</title>
SP 13
14     <!-- Bootstrap core CSS -->
15     <link href="//oss.maxcdn.com/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
16
17     <!-- Custom styles for this scaffold -->
18     <link href="${request.static_url('tutorial:static/theme.css')}" rel="stylesheet">
19
20     <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
21     <!--[if lt IE 9]>
6b56cb 22       <script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY" crossorigin="anonymous"></script>
FL 23       <script src="//oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js" integrity="sha384-f1r2UzjsxZ9T4V1f2zBO/evUqSEOpeaUUZcMTz1Up63bl4ruYnFYeM+BxI4NhyI0" crossorigin="anonymous"></script>
a940e1 24     <![endif]-->
SP 25   </head>
90b803 26
a940e1 27   <body>
SP 28
29     <div class="starter-template">
30       <div class="container">
31         <div class="row">
32           <div class="col-md-2">
33             <img class="logo img-responsive" src="${request.static_url('tutorial:static/pyramid.png')}" alt="pyramid web framework">
34           </div>
35           <div class="col-md-10">
36             <div class="content">
37               <div tal:replace="structure content">
38                 Page text goes here.
39               </div>
40               <p>
41                 <a tal:attributes="href edit_url" href="">
42                   Edit this page
43                 </a>
44               </p>
45               <p>
46                   Viewing <strong><span tal:replace="page.__name__">
47                   Page Name Goes Here</span></strong>
48               </p>
49               <p>You can return to the
50                 <a href="${request.application_url}">FrontPage</a>.
51               </p>
52             </div>
53           </div>
54         </div>
55         <div class="row">
56           <div class="copyright">
57             Copyright &copy; Pylons Project
58           </div>
ed252c 59         </div>
CM 60       </div>
61     </div>
a940e1 62
SP 63
64     <!-- Bootstrap core JavaScript
65     ================================================== -->
66     <!-- Placed at the end of the document so the pages load faster -->
6b56cb 67     <script src="//oss.maxcdn.com/libs/jquery/1.10.2/jquery.min.js" integrity="sha384-aBL3Lzi6c9LNDGvpHkZrrm3ZVsIwohDD7CDozL0pk8FwCrfmV7H9w8j3L7ikEv6h" crossorigin="anonymous"></script>
FL 68     <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>
a940e1 69   </body>
6471d3 70 </html>