diff options
Diffstat (limited to 'design/templates')
-rw-r--r-- | design/templates/base.html | 8 | ||||
-rw-r--r-- | design/templates/comments/form.html | 20 |
2 files changed, 9 insertions, 19 deletions
diff --git a/design/templates/base.html b/design/templates/base.html index 9c665ae..4c7ddac 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -9,9 +9,6 @@ <meta name="description" content="{% block metadescription %}Luxagraf: recording journeys around the world and just next door.{% endblock %}"> <meta name="author" content="Scott Gilbertson"> - <!--[if IE]> - <script src="/js/html5css3ie.min.js"></script> - <![endif]--> <link rel="alternate" type="application/rss+xml" title="Luxagraf RSS feed" @@ -19,11 +16,6 @@ {%block stylesheet%}<link rel="stylesheet" href="/media/screenv9.css" media="screen">{%endblock%} - <!--[if IE]> - <link rel="stylesheet" - href="/media/css/ie.css" - media="screen"> - <![endif]--> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="manifest" href="/manifest.webmanifest" /> {%block extrahead%}{%endblock%} diff --git a/design/templates/comments/form.html b/design/templates/comments/form.html index dcb83d4..6bc0edf 100644 --- a/design/templates/comments/form.html +++ b/design/templates/comments/form.html @@ -6,20 +6,18 @@ <input type="hidden" name="rder" value="{{ form.instance.content_object.get_absolute_url }}" /> {% for field in form %} {% if field.is_hidden %} - <div>{{ field }}</div> + {{ field }} {% else %} - {% if field.errors %}{{ field.errors }}{% endif %} - <p - {% if field.errors %} class="error"{% endif %} - {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> - {{ field.label_tag }} {{ field }} - </p> + <fieldset {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> + {{ field.label_tag }} + {%ifequal field.name "comment"%}<div class="textarea-rounded">{{ field }}</div>{%else%}{{field}}{%endifequal%} + </fieldset> {% endif %} {% endfor %} - <p class="submit"> - <input type="submit" name="post" class="submit-post" value="{% trans "Post" %}" /> - <input type="submit" name="preview" class="submit-preview" value="{% trans "Preview" %}" /> - </p> + <div class="submit"> + <input type="submit" name="post" class="submit-post btn" value="{% trans "Post" %}" /> + <input type="submit" name="preview" class="submit-preview btn" value="{% trans "Preview" %}" /> + </div> </form> <p style="font-size: 95%;"><strong>All comments are moderated</strong>, so you won’t see it right away. And please remember Kurt Vonnegut's rule: “god damn it, you’ve got to be kind.” You can use Markdown or HTML to format your comments. The allowed tags are <code><b>, <i>, <em>, <strong>, <a></code>. To create a new paragraph hit return twice. </p> </div> |