Compare commits

...

4 Commits

Author SHA1 Message Date
Peter Fidelman 5dff32c934 Merge branch 'timelime_timeline' into 'main'
Corrected typo: timelime -> timeline

See merge request brutaldon/brutaldon!10
2024-03-17 21:41:23 +00:00
Dorian Vertumna 28aae9942a Merge branch 'accessibility' into 'main'
Modified header tags

See merge request brutaldon/brutaldon!12
2024-03-15 23:12:26 +00:00
Dorian Wood e03144c2e9 Modified header tags
There is now a single h1 tag. User posting forms and the timeline
are in their own h2, and individual posts are in an h3 made around
the toot title.
2023-08-01 11:16:44 -04:00
Peter Fidelman 8813dd68f5 Corrected typo: timelime -> timeline 2022-11-30 20:44:18 -08:00
5 changed files with 8 additions and 7 deletions

View File

@ -165,7 +165,7 @@
<div class="container"> <div class="container">
{% block content %} {% block content %}
<h1 class="title"> <h1 class="title">
Title Brutaldon
</h1> </h1>
<p class="subtitle"> <p class="subtitle">
Brutaldon is totally a thing. Brutaldon is totally a thing.

View File

@ -4,7 +4,7 @@
{% load sanitizer %} {% load sanitizer %}
{% block title %} {% block title %}
Brutaldon ({{ own_acct.username }}) - Notifications timelime Brutaldon ({{ own_acct.username }}) - Notifications timeline
{% endblock %} {% endblock %}
{% comment %} {% comment %}

View File

@ -4,7 +4,7 @@
{% load cache %} {% load cache %}
{% block title %} {% block title %}
Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timeline
{% endblock %} {% endblock %}
{% block page_scripts %} {% block page_scripts %}
@ -14,14 +14,15 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<h1>Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime</h1>
{% if form %} {% if form %}
<h1 class="title">Post</h1> <h2 class="title">Post</h2>
<div class="box"> <div class="box">
{% include "main/post_minimal_partial.html" %} {% include "main/post_minimal_partial.html" %}
</div> </div>
<hr class="is-hidden"> <hr class="is-hidden">
{% endif %} {% endif %}
<h1 class="title">Your {{ timeline_name }} timeline</h1> <h2 class="title">Your {{ timeline_name }} timeline</h2>
<div id="timeline"> <div id="timeline">
{% for toot in toots %} {% for toot in toots %}
{% cache 600 toot_partial toot.id %} {% cache 600 toot_partial toot.id %}

View File

@ -29,7 +29,7 @@
<div class="media-content"> <div class="media-content">
<div class="content"> <div class="content">
<p> <p>
<strong>{{ toot.account.display_name | fix_emojos:toot.account.emojis | strip_html |safe}}</strong> <h3><strong>{{ toot.account.display_name | fix_emojos:toot.account.emojis | strip_html |safe}}</strong></h3>
<small><a href="{% url "user" toot.account.acct %}"> <small><a href="{% url "user" toot.account.acct %}">
@{{ toot.account.acct }}</a></small> @{{ toot.account.acct }}</a></small>
<a href="{{ toot.url }}"> <a href="{{ toot.url }}">

View File

@ -4,7 +4,7 @@
{% load taglinks %} {% load taglinks %}
{% block title %} {% block title %}
Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timelime Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timeline
{% endblock %} {% endblock %}
{% block content %} {% block content %}