desc
This commit is contained in:
parent
cc1c7ec065
commit
e944129627
8
.gitignore
vendored
8
.gitignore
vendored
@ -1,3 +1,8 @@
|
|||||||
|
conf.yml
|
||||||
|
public/
|
||||||
|
content/events
|
||||||
|
content/bibliography
|
||||||
|
|
||||||
# ---> macOS
|
# ---> macOS
|
||||||
# General
|
# General
|
||||||
.DS_Store
|
.DS_Store
|
||||||
@ -5,7 +10,8 @@
|
|||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
# Mathematics & Artifice
|
# Mathematics & Artifice
|
||||||
|
|
||||||
Site logics of "Mathematics & Artifice"
|
Site logics of "Mathematics & Artifice"
|
||||||
|
|
||||||
|
'''
|
||||||
|
> python -m venv venv
|
||||||
|
> source venv/bin/activate
|
||||||
|
> pip install -r requirements.txt
|
||||||
|
> python make.py
|
||||||
|
'''
|
||||||
5
content/description.md
Normal file
5
content/description.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
type: 'desc'
|
||||||
|
---
|
||||||
|
|
||||||
|
We are a reading group based at Utrecht University interested in the historical, philosophical, and contemporary aspects of mathematics.
|
||||||
63
make.py
63
make.py
@ -49,43 +49,54 @@ if __name__ == "__main__":
|
|||||||
# section {events + readings}
|
# section {events + readings}
|
||||||
section_template = jinja2.Template(utils.read_file(partials['section']))
|
section_template = jinja2.Template(utils.read_file(partials['section']))
|
||||||
|
|
||||||
|
content_dir = pathlib.Path(conf['content'])
|
||||||
|
|
||||||
# events
|
# events
|
||||||
events = list(utils.get_files_in_subdir(conf['content'], 'event', 'md').values())
|
events_dir = content_dir / 'events'
|
||||||
upcoming_events = []
|
upcoming_events = []
|
||||||
previous_events = []
|
previous_events = []
|
||||||
for e in events:
|
|
||||||
p = frontmatter.load(e)
|
if not events_dir.exists():
|
||||||
summary = f"{p['title']} - {p['date']}"
|
print("path content/events does not exist.")
|
||||||
content = markdown.markdown(p.content)
|
else:
|
||||||
detail = f"<i>When:</i> {p['date']}<br><i>Where:</i> {p['location']}<br>{content}"
|
events = list(utils.get_files_in_subdir(conf['content'], 'event', 'md').values())
|
||||||
el = {'summary': summary, 'detail': detail}
|
for e in events:
|
||||||
|
p = frontmatter.load(e)
|
||||||
|
summary = f"{p['title']} - {p['date']}"
|
||||||
|
content = markdown.markdown(p.content)
|
||||||
|
detail = f"<i>When:</i> {p['date']}<br><i>Where:</i> {p['location']}<br>{content}"
|
||||||
|
el = {'summary': summary, 'detail': detail}
|
||||||
|
|
||||||
if read_date(p) > arrow.utcnow():
|
if read_date(p) > arrow.utcnow():
|
||||||
upcoming_events.append(el)
|
upcoming_events.append(el)
|
||||||
else:
|
else:
|
||||||
previous_events.append(el)
|
previous_events.append(el)
|
||||||
|
|
||||||
upcoming = section_template.render(section_id='events', section_title="Upcoming session(s)", section_items=upcoming_events)
|
upcoming = section_template.render(section_id='events', section_title="Upcoming session(s)", section_items=upcoming_events)
|
||||||
previous = section_template.render(section_id='archive', section_title="Previous sessions", section_items=previous_events)
|
previous = section_template.render(section_id='archive', section_title="Previous sessions", section_items=previous_events)
|
||||||
|
|
||||||
# reading bibliography
|
# bibliography
|
||||||
reading = ""
|
reading = ""
|
||||||
bibliography_dir = pathlib.Path(conf['content']) / "bibliography"
|
bibliography_dir = content_dir / "bibliography"
|
||||||
bibliography = utils.ls_dir(bibliography_dir)
|
|
||||||
|
|
||||||
for b in bibliography:
|
if not bibliography_dir.exists():
|
||||||
reading_list = utils.get_files_in_subdir(bibliography_dir, b.stem, 'md')
|
print("path content/bibliography does not exist.")
|
||||||
if not reading_list:
|
else:
|
||||||
continue
|
bibliography = utils.ls_dir(bibliography_dir)
|
||||||
reading_list = list(reading_list.values())
|
|
||||||
readings = []
|
|
||||||
for r in sorted(reading_list):
|
|
||||||
p = frontmatter.load(r)
|
|
||||||
summary = p['title']
|
|
||||||
detail = markdown.markdown(p.content)
|
|
||||||
readings.append({'summary': summary, 'detail': detail})
|
|
||||||
|
|
||||||
reading += section_template.render(section_id='readings', section_title=b.stem, section_items=readings) + "\n"
|
for b in bibliography:
|
||||||
|
reading_list = utils.get_files_in_subdir(bibliography_dir, b.stem, 'md')
|
||||||
|
if not reading_list:
|
||||||
|
continue
|
||||||
|
reading_list = list(reading_list.values())
|
||||||
|
readings = []
|
||||||
|
for r in sorted(reading_list):
|
||||||
|
p = frontmatter.load(r)
|
||||||
|
summary = p['title']
|
||||||
|
detail = markdown.markdown(p.content)
|
||||||
|
readings.append({'summary': summary, 'detail': detail})
|
||||||
|
|
||||||
|
reading += section_template.render(section_id='readings', section_title=b.stem, section_items=readings) + "\n"
|
||||||
|
|
||||||
# footer
|
# footer
|
||||||
if 'footer' in partials and 'footer_img' in conf:
|
if 'footer' in partials and 'footer_img' in conf:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user