fixing svg icon use function to always include icon class; also updated README and removed TODO

This commit is contained in:
Adam Piontek 2021-07-11 14:24:13 -04:00
parent 59f70d24d0
commit 3ef1ecfe4e
10 changed files with 20 additions and 30 deletions
content-templates

View file

@ -25,15 +25,15 @@ namespace WP_73k;
<div class="post-date font-monospace text-gray-300 <?php echo (has_tag() ? '' : 'mb-3'); ?>">
<?php
echo svg_icon_use("mdi-calendar-clock", "icon baseline me-2") . get_the_date('F j, Y');
echo ' by ' . svg_icon_use("mdi-account", "icon baseline me-1") . get_the_author();
echo svg_icon_use("mdi-calendar-clock", "baseline me-2") . get_the_date('F j, Y');
echo ' by ' . svg_icon_use("mdi-account", "baseline me-1") . get_the_author();
?>
</div>
<?php
if (has_tag()) {
echo '<div class="post-tags fs-smaller mb-4">';
echo svg_icon_use("mdi-tag-multiple", "icon baseline text-gray-300 me-1");
echo svg_icon_use("mdi-tag-multiple", "baseline text-gray-300 me-1");
$tag_strings = array_map(function ($tag) {
return '<span class="text-gray-300">#</span><a href="' . get_tag_link($tag) . '">' . $tag->name . '</a>';