This commit is contained in:
merry_envs 2020-12-01 11:37:19 +00:00
parent d25bde21b0
commit 67b549e996
7 changed files with 2665 additions and 0 deletions

2
.afterbody Normal file
View File

@ -0,0 +1,2 @@
</main>
<br>

2
.beforebody Normal file
View File

@ -0,0 +1,2 @@
<main>

17
.config Normal file
View File

@ -0,0 +1,17 @@
# Blog title
global_title="Blog | merry"
# The typical subtitle for each blog
global_description="Blog de merry"
# The public base URL for this blog
global_url="http://fr.tild3.org/~merry/blog"
# Your name
global_author="merry"
# You can use twitter or facebook or anything for global_author_url
global_author_url="https://fr.tild3.org/~merry/"
# Your email
global_email="merry@fr.tild3.org"
# Style
header_file=".header.template"
body_begin_file=".beforebody"
body_end_file=".afterbody"

13
.header.template Normal file
View File

@ -0,0 +1,13 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#00cc00">
<link rel="stylesheet" href="https://tilde.team/~ben/gruvbox/gruvbox.css">
<link rel="stylesheet" href="extra.css">
<link rel="alternate" type="application/rss+xml" title="subscribe to this page..." href="feed.rss" />

1450
Markdown.pl Executable file

File diff suppressed because it is too large Load Diff

1174
bb.sh Executable file

File diff suppressed because it is too large Load Diff

7
gophermap Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env sh
printf "my bashblog posts\n"
user=$(stat -c '%U' .)
for post in $(ls -t *.md); do
post=$(basename $post)
printf "0$post\t/~$user/blog/$post\ttilde.team\t70\n"
done