Extract table component, use for blog tags

This commit is contained in:
Oliver Davies 2018-01-13 18:51:38 +00:00
parent c1a3f0ddf3
commit ac6b0ad08f
5 changed files with 19 additions and 14 deletions

View file

@ -1,5 +1,5 @@
<tr>
<td class="whitespace-no-wrap">
<td>
{{ row.event.date|date(row.event.fuzzy_date ? 'F Y' : 'j F Y') }}
{% if row.event.time is defined %}
@ -10,7 +10,7 @@
</td>
{% if not talk_page %}
<td class="whitespace-no-wrap">
<td>
{% if row.talk.url is not empty %}
<a href="{{ row.talk.url }}">
{{ row.talk.title }}
@ -29,7 +29,7 @@
</td>
{% endif %}
<td class="whitespace-no-wrap">
<td>
{% if row.event.website is not empty %}
<a href="{{ row.event.website }}">
{{ row.event.name }}
@ -46,7 +46,7 @@
</td>
{% if not upcoming %}
<td class="whitespace-no-wrap">
<td>
{% if row.event.feedback and row.event.date <= today %}
<a href="{{ row.event.feedback }}"
class="button"

View file

@ -1,5 +1,5 @@
<div class="overflow-x-auto overflow-y-hidden w-full mb-4 border">
<table class="table w-full mb-0 border-0">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th class="w-1/4">Date</th>

View file

@ -15,7 +15,7 @@ generator:
{% block content %}
<h1>Tag: {{ page.tag }}</h1>
<div class="overflow-auto">
<div class="table-responsive">
<table class="table">
<thead>
<tr>