Browse Source

hacked out the None

main
manetta 3 years ago
parent
commit
919ddcccec
  1. 3
      stylesheet.css
  2. 12
      templates/index.html

3
stylesheet.css

@ -21,6 +21,9 @@ th, td{
text-align: left; text-align: left;
padding:0 1em 0 0; padding:0 1em 0 0;
} }
td.versions{
min-width: 350px;
}
hr{ hr{
border:0; border:0;
border-bottom:1px solid; border-bottom:1px solid;

12
templates/index.html

@ -40,12 +40,14 @@
<td class="versions"> <td class="versions">
{% for v in pad.versions %}<a href="{{ v.url }}">{{ v.type }}</a> {% endfor %} {% for v in pad.versions %}<a href="{{ v.url }}">{{ v.type }}</a> {% endfor %}
</td> </td>
<!-- WOW --> <!-- WOW -->
<td class="magicwords"> <td class="magicwords">
{% for magicword in pad.magicwords %} {% for magicword in pad.magicwords %}
<a class="magicwords" href="#{{ magicword }}">{{ magicword }}</a> <a class="magicwords" href="#{{ magicword }}">{{ magicword }}</a>
{{ allmagicwords.append(magicword) }} {% if magicword %}
{% endfor %} <div style="display:none;">{{ allmagicwords.append(magicword) }}</div>
{% endif %}
{% endfor %}
</td> </td>
<!--<td class="lastedited">{{ pad.lastedited_iso|datetimeformat }}</td>--> <!--<td class="lastedited">{{ pad.lastedited_iso|datetimeformat }}</td>-->
<!--<td class="revisions">{{ pad.revisions }}</td>--> <!--<td class="revisions">{{ pad.revisions }}</td>-->

Loading…
Cancel
Save