66 lines
2.3 KiB
Python
66 lines
2.3 KiB
Python
import os
|
|
|
|
static = os.listdir("pages/static/")
|
|
posts = os.listdir("pages/posts")
|
|
|
|
templates = ["header","navbar","sidebar","body","footer"]
|
|
|
|
for staticPage in static:
|
|
with open("site/" + staticPage, 'w+') as output:
|
|
for page in templates:
|
|
with open ("templates/" + page + ".htm") as template:
|
|
for line in template:
|
|
if "%Content%" in line:
|
|
line = ""
|
|
with open("pages/static/" + staticPage) as content:
|
|
for line1 in content:
|
|
line += "\t\t\t" + line1
|
|
output.write(line)
|
|
|
|
for postPage in posts:
|
|
with open("site/"+ postPage, 'w+') as output:
|
|
for page in templates:
|
|
with open ("templates/" + page + ".htm") as template:
|
|
for line in template:
|
|
if "%Content%" in line:
|
|
line = ""
|
|
with open("pages/posts/" + postPage,'r') as content:
|
|
for line1 in content:
|
|
line += "\t\t\t" + line1
|
|
output.write(line)
|
|
|
|
with open("pages/static/posts.html", 'w+') as output:
|
|
output.write("<h1>Posts</h1>\n<p>These are my random ramblings. The titles should be informative... or it'll be a fun mystery!</p>")
|
|
output.write("<ul>")
|
|
for post in posts:
|
|
output.write("<a href='" + post + "'> " + post + "</a>\n")
|
|
output.write("</ul>")
|
|
|
|
|
|
|
|
|
|
def makeGifGallery():
|
|
gifs = []
|
|
for file in os.listdir('site/images/gifs/customgifs/'):
|
|
|
|
with open("templates/gifwrap.htm") as wrap:
|
|
for line in wrap:
|
|
gif = line.replace("%gif%", "images/gifs/customgifs/" + file)
|
|
gifs.append(gif)
|
|
|
|
with open("pages/semistatic/gifs.html") as gifstpl:
|
|
with open("pages/static/gifs.html","w+") as output:
|
|
output.write('<h1>GIFs I have made</h1>')
|
|
output.write('\n<table style="width: 800px; margin-left: auto; margin-right: auto;">')
|
|
count = 0
|
|
for gif in gifs:
|
|
if count==0:
|
|
output.write('\n<tr>\n')
|
|
count += 1
|
|
output.write('<td>' + gif + '</td>')
|
|
if count%3==0:
|
|
output.write('\n</tr>\n<tr>')
|
|
output.write('\n</table>\n\n')
|
|
|
|
makeGifGallery()
|