diff options
author | EuAndreh <eu@euandre.org> | 2024-11-08 07:27:40 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-08 07:27:40 -0300 |
commit | d09aa09cb7539682b5bc5529724a80c53bf208e9 (patch) | |
tree | aa8ee77a4b4aa61ac690ad75128876eae1cbade1 | |
parent | Initial version (diff) | |
download | mkwb-d09aa09cb7539682b5bc5529724a80c53bf208e9.tar.gz mkwb-d09aa09cb7539682b5bc5529724a80c53bf208e9.tar.xz |
src/html: Fix closing quotes
-rwxr-xr-x | src/html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ EOF if [ -n "$updatedat_formatted" ]; then cat <<EOF <p id="updated-at"> - Updated on <time datetime="$updatedat_iso">"$updatedat_formatted</time>" + Updated on <time datetime="$updatedat_iso">$updatedat_formatted</time> </p> EOF fi |