comparison static/tpl/inlinks-page.html @ 89:b03f083c3a29

Lots of HTML/JS/Less changes: - more semantic and simple markup, no useless grid. - simpler colour schemes (TODO: colours are ugly, tune them). - better error handling in Backbone views. - fixed some view bugs. - changed new/modified page alert to a ribbon with tooltip.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 06 Apr 2013 18:07:31 -0700
parents 8250c977bc50
children 74eb145eb839
comparison
equal deleted inserted replaced
88:a5a3d454eac9 89:b03f083c3a29
1 <article class="row"> 1 <article>
2 <div class="page span12"> 2 <header>
3 <h1>{{meta.title}} <span class="decorator">Incoming Links</span></h1> 3 <h1>{{meta.title}} <span class="decorator">Incoming Links</span></h1>
4 </header>
5 <section>
4 <p>The following pages link to <a href="{{url_read}}">{{meta.title}}</a>:</p> 6 <p>The following pages link to <a href="{{url_read}}">{{meta.title}}</a>:</p>
5 <ul> 7 <ul>
6 {{#each in_links}} 8 {{#each in_links}}
7 <li> 9 <li>
8 {{#if missing}} 10 {{#if missing}}
11 <a class="wiki-link" href="/#/read/{{url}}">{{title}}</a> 13 <a class="wiki-link" href="/#/read/{{url}}">{{title}}</a>
12 {{/if}} 14 {{/if}}
13 </li> 15 </li>
14 {{/each}} 16 {{/each}}
15 </ul> 17 </ul>
16 </div> 18 </section>
17 </article> 19 </article>