From 9f5162371323562623bae42b0476bd8b9a4a5e92 Mon Sep 17 00:00:00 2001 From: Jefferson Julio Date: Mon, 31 May 2021 19:16:12 -0300 Subject: Add more HTML metadata, re-format some text --- pages/home.sh | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'pages/home.sh') diff --git a/pages/home.sh b/pages/home.sh index 02adf53..49094fc 100755 --- a/pages/home.sh +++ b/pages/home.sh @@ -3,20 +3,24 @@ welcome () { cat < -
+

Bem-vindo ao meu blog :3

-

Aqui mostro o meu trabalho e escrevo sobre programação.

-
+

Aqui escrevo sobre programação e mostro o meu trabalho.

+ +
WELCOME } -print-all-articles () { +all-articles-sort-by-last-modification () { # Find all articles and sort by date of creation + cat <
Últimas atividades +HEADER IFS=';' read -ra ARTICLE_LIST <<< "$( find $ARTICLES_PATH \ -type f \ - -name '*.txt' \ + -regex ".*\.$(scape-regex "($ARTICLES_EXTS)")" \ -printf "%T@ %p\n" | sort -rn | cut -b 23- | @@ -32,6 +36,6 @@ print-all-articles () { cat < $(welcome) - $(print-all-articles) + $(all-articles-sort-by-last-modification) PAGE -- cgit v1.2.3