diff --git a/resources/css/app.css b/resources/css/app.css index 54381dcb..c33ba33f 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -33,6 +33,7 @@ a { @import 'components/markup.css'; @import 'components/note.css'; @import 'components/talks/video.css'; +@import 'components/table.css'; @import 'components/widget.css'; @tailwind utilities; diff --git a/resources/css/components/table.css b/resources/css/components/table.css new file mode 100644 index 00000000..cdfd4907 --- /dev/null +++ b/resources/css/components/table.css @@ -0,0 +1,16 @@ +.table { + th { + @apply bg-gray-200 text-left; + } + + th, + td { + @apply px-4 py-2 border border-solid border-gray-300; + } +} + +table.is-striped { + tbody > tr:not(:nth-child(odd)) td { + @apply bg-gray-100; + } +} diff --git a/source/articles/tags/tag.html b/source/articles/tags/tag.html index f38f80a1..204ea583 100644 --- a/source/articles/tags/tag.html +++ b/source/articles/tags/tag.html @@ -9,13 +9,13 @@ generator: {% endblock %} -{% block title %}{{ page.title }} "{{ page.tag }}"{% endblock %} +{% block page_title %} + {{ page.title }}: "{{ page.tag }}" +{% endblock %} {% block content %} -

Tag: {{ page.tag }}

-
- +
Post Title