1
0
mirror of https://github.com/tiyn/beaker-blog.git synced 2025-04-19 15:27:47 +02:00

Compare commits

..

No commits in common. "910e6bcc0a018768912e33a575ab8ce95c6c09ec" and "00686923b40380f22bb85905f8604265cf299f10" have entirely different histories.

3 changed files with 5 additions and 8 deletions

View File

@ -116,10 +116,11 @@ def gen_stand_string(path_ex):
content_string += "<h1>" + title + "</h1>\n" content_string += "<h1>" + title + "</h1>\n"
content_string += "<a href=\"" + "/index.html#" + \ content_string += "<a href=\"" + "/index.html#" + \
filename_no_end + "\">" + curr_date + "</a>" filename_no_end + "\">" + curr_date + "</a>"
content_string += "<br><br>\n" content_string += "<br>\n"
if filename.endswith(".html"): if filename.endswith(".html"):
for line in text: for line in text:
content_string += line content_string += line
content_string += "<br>"
if filename.endswith(".md"): if filename.endswith(".md"):
content_string += gen_md_content(filename, 1) content_string += gen_md_content(filename, 1)
return content_string return content_string

View File

@ -33,12 +33,12 @@ footer {
color: var(--text0); color: var(--text0);
} }
footer a { .footer a {
color: var(--menulink0); color: var(--menulink0);
} }
footer a:hover { .footer a:hover {
color: var(--bg0); color: var(--menulink1);
} }
span { span {

View File

@ -177,10 +177,6 @@ h3 {
padding-bottom: 10px; padding-bottom: 10px;
} }
.standalone h1:first-child {
padding-bottom: 0;
}
.imprint h1:first-child { .imprint h1:first-child {
padding-bottom: 20px; padding-bottom: 20px;
} }