This commit is contained in:
Bastian Kleineidam 2012-12-17 22:01:02 +01:00
parent 5cb4c24fad
commit fcb71717f6

View file

@ -10,11 +10,14 @@ from dosagelib.scraper import get_scrapers
htmltemplate = """ htmltemplate = """
--- ---
extends: base.j2 extends: base.j2
default_block: content
title: Dosage by Bastian Kleineidam title: Dosage by Bastian Kleineidam
description: a commandline webcomic downloader and archiver description: a commandline webcomic downloader and archiver
--- ---
{% block js %}
<script src="media/js/masonry.min.js"></script>
{% endblock js %}
{% block content %}
<div class="inner clearfix"> <div class="inner clearfix">
<section id="main-content"> <section id="main-content">
@ -31,6 +34,7 @@ window.onload = function() {
}); });
}; };
</script> </script>
{% endblock content %}
""" """