Skip to content
Snippets Groups Projects
Commit eb588d6e authored by siebenseitig's avatar siebenseitig
Browse files

feat: update margin-bottom

parent 0e9f7550
Branches
No related tags found
No related merge requests found
Showing
with 26 additions and 12 deletions
...@@ -69,4 +69,7 @@ ...@@ -69,4 +69,7 @@
{{ list_events.list(sos_private, is_favorite_events, is_scheduled_events ) }} {{ list_events.list(sos_private, is_favorite_events, is_scheduled_events ) }}
{% endif %} {% endif %}
</div> </div>
<hr class="my-11 border-top-0">
{% endblock %} {% endblock %}
...@@ -75,4 +75,7 @@ ...@@ -75,4 +75,7 @@
{% endif %} {% endif %}
{% endfor -%} {% endfor -%}
</ul> </ul>
<hr class="my-11 border-top-0">
{% endblock %} {% endblock %}
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
{% block title %}{{conf.name}} - {{ entry.title }}{% endblock %} {% block title %}{{conf.name}} - {{ entry.title }}{% endblock %}
{% block content %} {% block content %}
<article class="pb-11"> <article class="mb-11">
{{ titleMacro.title(title=entry.title, {{ titleMacro.title(title=entry.title,
share_url = url('plainui:board_entry', conf_slug=conf.slug, id=entry.id), share_url = url('plainui:board_entry', conf_slug=conf.slug, id=entry.id),
report_url = entry.id, report_url = entry.id,
......
...@@ -68,4 +68,7 @@ ...@@ -68,4 +68,7 @@
</li> </li>
{% endfor -%} {% endfor -%}
</ul> </ul>
<hr class="my-11 border-top-0">
{% endblock %} {% endblock %}
...@@ -20,4 +20,5 @@ ...@@ -20,4 +20,5 @@
{{ list_events.list(events_ccc, is_favorite_events, is_scheduled_events ) }} {{ list_events.list(events_ccc, is_favorite_events, is_scheduled_events ) }}
</div> </div>
<hr class="my-11 border-top-0">
{% endblock %} {% endblock %}
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
{% block title %}{{ _("Conferences") }}{% endblock %} {% block title %}{{ _("Conferences") }}{% endblock %}
{% block content %} {% block content %}
{{ titleMacro.title(_("Conferences")) }} {{ titleMacro.title(_("Conferences")) }}
<ul> <ul class="my-11">
{% for conf in conferences %} {% for conf in conferences %}
<li><a href="{{ url('plainui:landing', conf_slug=conf.slug) }}">{{conf.name}}</a></li> <li><a href="{{ url('plainui:landing', conf_slug=conf.slug) }}">{{conf.name}}</a></li>
{% endfor %} {% endfor %}
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
{{ list_events.slider(events_upcoming, is_favorite_events, is_scheduled_events ) }} {{ list_events.slider(events_upcoming, is_favorite_events, is_scheduled_events ) }}
</div> </div>
<hr class="my-11 border-top-0">
</article> </article>
{% endblock %} {% endblock %}
...@@ -73,4 +73,7 @@ ...@@ -73,4 +73,7 @@
{% elif mode == 'calendar' %} {% elif mode == 'calendar' %}
{{ calendar(events) }} {{ calendar(events) }}
{% endif %} {% endif %}
<hr class="my-11 border-top-0">
{% endblock %} {% endblock %}
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
<hr class="my-8"> <hr class="my-8">
<div class="border p-6 my-8"> <div class="border p-6 mt-8 mb-11">
TODO: Tracks... TODO: Tracks...
</div> </div>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<p>{{ markdownMacro.markdown(markdown=room.description | safe) }}</p> <p>{{ markdownMacro.markdown(markdown=room.description | safe) }}</p>
{% endif %} {% endif %}
<div class="mt-4"> <div class="mt-4 mb-11">
<h4>{{ _("Links") }}</h4> <h4>{{ _("Links") }}</h4>
<ul> <ul>
{% for link in room.links.all() %} {% for link in room.links.all() %}
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
share_url = url('plainui:rooms', conf_slug=conf.slug), share_url = url('plainui:rooms', conf_slug=conf.slug),
report_url = url('plainui:rooms', conf_slug=conf.slug)) }} report_url = url('plainui:rooms', conf_slug=conf.slug)) }}
<ul> <ul class="mt-8 mb-11">
{% for room in rooms %} {% for room in rooms %}
<li><a href="{{ url('plainui:room', conf_slug=conf.slug, room_id=room.id) }}">{{room.name}}</a> <li><a href="{{ url('plainui:room', conf_slug=conf.slug, room_id=room.id) }}">{{room.name}}</a>
<ul> <ul>
......
{% extends "plainui/base.html" %} {% extends "plainui/base.html" %}
{% block title %}{{conf.name}} - {{ _("Search Results") }}{% endblock %} {% block title %}{{conf.name}} - {{ _("Search Results") }}{% endblock %}
{% block content %} {% block content %}
<div> <div class="mb-11">
<div class="row justify-content-center"> <div class="row justify-content-center">
<div class="col-auto"><h1>{{ _("Search Results") }}</h1></div> <div class="col-auto"><h1>{{ _("Search Results") }}</h1></div>
<div class="w-100"></div> <div class="w-100"></div>
......
...@@ -11,8 +11,9 @@ ...@@ -11,8 +11,9 @@
<p>TODO: Stream</p> <p>TODO: Stream</p>
</figure> </figure>
<div class="my-8"> <div class="mt-8 mb-11">
<h2 class="mb-5">{{_("External Ressources")}}</h2> <h2 class="mb-5">{{_("External Ressources")}}</h2>
{{ markdownMacro.markdown(markdown="TODO: add some notes as markdown for the livestream event") }} {{ markdownMacro.markdown(markdown="TODO: add some notes as markdown for the livestream event") }}
</div> </div>
{% endblock %} {% endblock %}
{% extends "plainui/base.html" %} {% extends "plainui/base.html" %}
{% block title %}{{conf.name}} - {{ _("Tag %(name)s", name=tag.slug) }}{% endblock %} {% block title %}{{conf.name}} - {{ _("Tag %(name)s", name=tag.slug) }}{% endblock %}
{% block content %} {% block content %}
<div> <div class="mb-11">
<div class="row justify-content-center"> <div class="row justify-content-center">
<div class="col-auto"><h1>{{ _("Tag %(name)s", name=tag.slug) }}</h1></div> <div class="col-auto"><h1>{{ _("Tag %(name)s", name=tag.slug) }}</h1></div>
<div class="w-100"></div> <div class="w-100"></div>
......
...@@ -5,8 +5,7 @@ ...@@ -5,8 +5,7 @@
{% block content %} {% block content %}
{{ titleMacro.title(_("Upcoming events")) }} {{ titleMacro.title(_("Upcoming events")) }}
<h2>{{ _("upcoming events") }}</h2> <div class="border mt-8 mb-11 p-6">
<div class="border p-6">
{{ list_events.slider(events, my_favorite_events, my_scheduled_events ) }} {{ list_events.slider(events, my_favorite_events, my_scheduled_events ) }}
</div> </div>
{% endblock %} {% endblock %}
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
{% block title %}{{ _("%(conf)s - User %(name)s", conf=conf.name, name=display_user.username) }}{% endblock %} {% block title %}{{ _("%(conf)s - User %(name)s", conf=conf.name, name=display_user.username) }}{% endblock %}
{% block content %} {% block content %}
<div class="border my-5 p-6"> <div class="border mt-8 mb-11 p-6">
<div class="row"> <div class="row">
<div class="col"> <div class="col">
<h2 class="w-100 text-center bg-secondary p-2">{{ display_user.username }}</h2> <h2 class="w-100 text-center bg-secondary p-2">{{ display_user.username }}</h2>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
</div> </div>
</div> </div>
<div class="border my-5 p-6"> <div class="border my-8 p-6">
<div class="row"> <div class="row">
<div class="col"> <div class="col">
<h2 class="bg-secondary text-center p-2">{{ _("badges") }}</h2> <h2 class="bg-secondary text-center p-2">{{ _("badges") }}</h2>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment