mirror of
https://github.com/alvierahman90/gronk.git
synced 2024-11-22 07:19:53 +00:00
add extra content to notes landing page
This commit is contained in:
parent
d5c3b95d2b
commit
c7b04653cb
13
notes2web.py
13
notes2web.py
@ -14,6 +14,7 @@ TEXT_ARTICLE_TEMPLATE_FOOT = None
|
|||||||
TEXT_ARTICLE_TEMPLATE_HEAD = None
|
TEXT_ARTICLE_TEMPLATE_HEAD = None
|
||||||
INDEX_TEMPLATE_FOOT = None
|
INDEX_TEMPLATE_FOOT = None
|
||||||
INDEX_TEMPLATE_HEAD = None
|
INDEX_TEMPLATE_HEAD = None
|
||||||
|
EXTRA_INDEX_CONTENT = None
|
||||||
|
|
||||||
def get_files(folder):
|
def get_files(folder):
|
||||||
markdown = []
|
markdown = []
|
||||||
@ -55,6 +56,7 @@ def get_args():
|
|||||||
parser.add_argument('-i', '--template-index-head', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/templates/indexhead.html'))
|
parser.add_argument('-i', '--template-index-head', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/templates/indexhead.html'))
|
||||||
parser.add_argument('-I', '--template-index-foot', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/templates/indexfoot.html'))
|
parser.add_argument('-I', '--template-index-foot', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/templates/indexfoot.html'))
|
||||||
parser.add_argument('-s', '--stylesheet', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/styles.css'))
|
parser.add_argument('-s', '--stylesheet', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/styles.css'))
|
||||||
|
parser.add_argument('-e', '--extra-index-content', type=pathlib.Path, default=pathlib.Path('/opt/notes2web/templates/extra_index_content.html'))
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
@ -73,6 +75,9 @@ def main(args):
|
|||||||
with open(args.template_index_head) as fp:
|
with open(args.template_index_head) as fp:
|
||||||
INDEX_TEMPLATE_HEAD = fp.read()
|
INDEX_TEMPLATE_HEAD = fp.read()
|
||||||
|
|
||||||
|
with open(args.extra_index_content) as fp:
|
||||||
|
EXTRA_INDEX_CONTENT = fp.read()
|
||||||
|
|
||||||
if not os.path.exists(args.output_dir):
|
if not os.path.exists(args.output_dir):
|
||||||
os.makedirs(args.output_dir, exist_ok=True)
|
os.makedirs(args.output_dir, exist_ok=True)
|
||||||
|
|
||||||
@ -114,6 +119,8 @@ def main(args):
|
|||||||
|
|
||||||
dirs_to_index = [args.output_dir.name] + get_dirs(args.output_dir)
|
dirs_to_index = [args.output_dir.name] + get_dirs(args.output_dir)
|
||||||
print(f"{dirs_to_index=}")
|
print(f"{dirs_to_index=}")
|
||||||
|
print(f"{os.path.commonpath(dirs_to_index)=}")
|
||||||
|
|
||||||
for directory in dirs_to_index:
|
for directory in dirs_to_index:
|
||||||
paths = os.listdir(directory)
|
paths = os.listdir(directory)
|
||||||
print(f"{paths=}")
|
print(f"{paths=}")
|
||||||
@ -125,7 +132,6 @@ def main(args):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
fullpath = os.path.join(directory, path)
|
fullpath = os.path.join(directory, path)
|
||||||
print(fullpath)
|
|
||||||
if os.path.splitext(path)[1] == '.html':
|
if os.path.splitext(path)[1] == '.html':
|
||||||
with open(fullpath) as fp:
|
with open(fullpath) as fp:
|
||||||
soup = bs(fp.read(), 'html.parser')
|
soup = bs(fp.read(), 'html.parser')
|
||||||
@ -150,6 +156,11 @@ def main(args):
|
|||||||
indexentries.sort(key=lambda entry: entry['isdirectory'], reverse=True)
|
indexentries.sort(key=lambda entry: entry['isdirectory'], reverse=True)
|
||||||
|
|
||||||
html = re.sub(r'\$title\$', directory, INDEX_TEMPLATE_HEAD)
|
html = re.sub(r'\$title\$', directory, INDEX_TEMPLATE_HEAD)
|
||||||
|
html = re.sub(r'\$extra_content\$',
|
||||||
|
EXTRA_INDEX_CONTENT if directory == os.path.commonpath(dirs_to_index) else '',
|
||||||
|
html
|
||||||
|
)
|
||||||
|
|
||||||
for entry in indexentries:
|
for entry in indexentries:
|
||||||
html += f"<div class=\"article\"><a href=\"{entry['path']}\">{entry['title']}{'/' if entry['isdirectory'] else ''}</a></div>"
|
html += f"<div class=\"article\"><a href=\"{entry['path']}\">{entry['title']}{'/' if entry['isdirectory'] else ''}</a></div>"
|
||||||
html += INDEX_TEMPLATE_FOOT
|
html += INDEX_TEMPLATE_FOOT
|
||||||
|
1
templates/extra_index_content.html
Normal file
1
templates/extra_index_content.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<p>These are my personal notes. Correctness is not guaranteed.</p>
|
@ -8,4 +8,5 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>$title$</h1>
|
<h1>$title$</h1>
|
||||||
|
$extra_content$
|
||||||
<div class="article"><a href="..">../</a></div>
|
<div class="article"><a href="..">../</a></div>
|
||||||
|
Loading…
Reference in New Issue
Block a user