Fixing docs links with '//'; small docs fixes.

master
Sérgio Gomes 2015-06-10 16:56:13 +01:00
parent 53712ff2d8
commit 3c7b27ae36
9 changed files with 9 additions and 16 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@ -1,24 +1,17 @@
{% extends 'layout.html' %}
{% block content %}
<link href="{{page.include_prefix}}/assets/components.css" rel="stylesheet">
<script src="{{page.include_prefix}}/assets/components.js"></script>
<link rel="stylesheet" href="/components/demos.css">
<link href="{{page.include_prefix}}assets/components.css" rel="stylesheet">
<script src="{{page.include_prefix}}assets/components.js"></script>
<link rel="stylesheet" href="{{page.include_prefix}}components/demos.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css" rel="stylesheet">
<!--
'toggles': ['checkbox', 'icon-toggle', 'radio', 'switch'],
'tables': ['data-table'],
'textfields': ['text-field'],
'tooltips': ['tooltip']
-->
<div class="mdl-components mdl-js-components">
<aside class="mdl-components__nav">
{% for category in page.categories %}
<a href="#{{ category.name }}-section" class="mdl-components__link mdl-component {{ category.name }} {% if loop.first %}is-active{%- endif %}">
<div class="mdl-components__link-image"
style="background-image: url('/assets/comp_{{ category.name }}.png')">
style="background-image: url('{{page.include_prefix}}assets/comp_{{ category.name }}.png')">
</div>&nbsp;
<span class="mdl-components__link-text">{{ category.title }}</span>
</a>

View File

@ -11,9 +11,9 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="{{page.include_prefix}}/material.min.css" id="main-stylesheet">
<link rel="stylesheet" href="{{page.include_prefix}}/assets/customizer.css">
<script src="{{page.include_prefix}}/assets/customizer.js"></script>
<link rel="stylesheet" href="{{page.include_prefix}}material.min.css" id="main-stylesheet">
<link rel="stylesheet" href="{{page.include_prefix}}assets/customizer.css">
<script src="{{page.include_prefix}}assets/customizer.js"></script>
</head>
<body class="mdl-gen mdl-color--grey-200" onload="init();" id="mdl-gen-body">
<div class="mdl-gen-color-row">
@ -112,6 +112,6 @@
</div>
</div>
<script src="{{page.include_prefix}}/material.min.js"></script>
<script src="{{page.include_prefix}}material.min.js"></script>
</body>
</html>

View File

@ -20,7 +20,7 @@
Preview
</a>
</div>
<img src="{{page.include_prefix}}/assets/templates/{{ template.name }}.jpg" srcset="{{page.include_prefix}}/assets/templates/{{ template.name }}.jpg 1x, {{page.include_prefix}}/assets/templates/{{ template.name }}_2x.jpg 2x" class="template__preview mdl-cell mdl-cell--8-col">
<img src="{{page.include_prefix}}assets/templates/{{ template.name }}.jpg" srcset="{{page.include_prefix}}assets/templates/{{ template.name }}.jpg 1x, {{page.include_prefix}}assets/templates/{{ template.name }}_2x.jpg 2x" class="template__preview mdl-cell mdl-cell--8-col">
</section>
{% endfor %}
{% endblock %}