Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: bower_components/gif.js/site/templates/layout.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html class="no-js">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6 <title>{{ name }}</title>
7 <meta name="description" content="{{ description }}">
8 <meta name="keywords" content="{{ keywords }}">
9 <meta name="viewport" content="width=device-width">
10 <meta property="og:title" content="{{ name }}">
11 <meta property="og:url" content="{{ url }}">
12 <meta property="og:description" content="{{ description }}">
13 <meta property="og:type" content="website">
14 <link rel="stylesheet" href="{{ env.config.baseUrl }}styles/main.css">
15 <script>
16 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
17 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o ),
18 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m)
19 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
20 ga('create', 'UA-41063995-1', 'jnordberg.github.io');
21 ga('send', 'pageview');
22 </script>
23 {% block scripts %}{% endblock %}
24 </head>
25 <body>
26 <header>
27 <h1>gif.js</h1>
28 <p>{{ description }}</p>
29 <p class="github"><a href="https://github.com/jnordberg/gif.js">Download &am p; Docs on GitHub</a></p>
30 </header>
31 <div class="wrap">
32 {% block body %}{% endblock %}
33 </div>
34 <footer>
35 <a href="https://creativecommons.org/licenses/by-sa/3.0/">&copy;&copy;</a> 2 013
36 <a href="http://johan-nordberg.com/">Johan Nordberg</a>
37 </footer>
38 </body>
39 </html>
OLDNEW
« no previous file with comments | « bower_components/gif.js/site/templates/index.html ('k') | bower_components/gif.js/site/templates/test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698