Browse Source

adding events page for seminar series

main
Simon Bowie 2 months ago
parent
commit
69543ec39b
6 changed files with 41 additions and 7 deletions
  1. +1
    -0
      docker-compose.prod.yml
  2. +1
    -0
      docker-compose.yml
  3. +16
    -5
      web/app/main.py
  4. +2
    -2
      web/app/templates/about.html
  5. +11
    -0
      web/content/seminar.md
  6. +10
    -0
      web/content/seminar_details.md

+ 1
- 0
docker-compose.prod.yml View File

@@ -2,6 +2,7 @@ services:
web:
build: ./web
container_name: python
restart: unless-stopped
expose:
- 5000
volumes:

+ 1
- 0
docker-compose.yml View File

@@ -2,6 +2,7 @@ services:
web:
build: ./web
container_name: python
restart: unless-stopped
ports:
- "5000:5000"
volumes:

+ 16
- 5
web/app/main.py View File

@@ -51,9 +51,20 @@ def test():
@main.route('/about')
def about():
with open('content/about.md', 'r') as f:
about_text = f.read()
about_text = markdown.markdown(about_text)
main_text = f.read()
main_text = markdown.markdown(main_text)
with open('content/colophon.md', 'r') as f:
colophon_text = f.read()
colophon_text = markdown.markdown(colophon_text)
return render_template('about.html', about_text=about_text, colophon_text=colophon_text)
sidebar_text = f.read()
sidebar_text = markdown.markdown(sidebar_text)
return render_template('about.html', main_text=main_text, sidebar_text=sidebar_text)

# route for events page
@main.route('/expub_seminars')
def events():
with open('content/seminar.md', 'r') as f:
main_text = f.read()
main_text = markdown.markdown(main_text)
with open('content/seminar_details.md', 'r') as f:
sidebar_text = f.read()
sidebar_text = markdown.markdown(sidebar_text)
return render_template('about.html', main_text=main_text, sidebar_text=sidebar_text)

+ 2
- 2
web/app/templates/about.html View File

@@ -4,11 +4,11 @@

<div class="grid lg:grid-cols-[2fr,1fr] gap-4 container">
<div class="cell-margin text max-w-[65ch] lg:m-16 text-lg lg:text-xl">
{{ about_text|safe }}
{{ main_text|safe }}
</div>

<div id="colophon" class="cell-margin text lg:my-16">
{{ colophon_text | safe }}
{{ sidebar_text | safe }}
</div>
</div>


+ 11
- 0
web/content/seminar.md View File

@@ -0,0 +1,11 @@
## Experimental Book Publishing in Practice

Last year saw the release of the [Experimental Publishing Compendium](https://compendium.copim.ac.uk/), a guide and reference for scholars, publishers, developers, librarians, and designers who want to challenge, push and redefine the shape, form and rationale of scholarly books. The Compendium brings together tools, practices, and books to promote the publication of experimental scholarly works.

To complement the Compendium, this series of seminars will showcase a selection of open source tools, platforms, and software that support the publication of experimental, interactive, multimodal, and/or versioned books as well as experimental publishing practices from annotating and open reviewing to forking and rewriting.

Organised by [Copim’s Experimental Publishing Group](https://copim.pubpub.org/experimental-publishing-group) in collaboration with the Centre for Postdigital Cultures’ [Post-Publishing](https://postpublishing.postdigitalcultures.org) research strand, these seminars respond to the previously stated need of both authors and publishers to learn more about experimental book publishing and the tools, practices, and workflows that support this (Adema and Stone, 2017; Adema et al. 2022).

The aim of these seminars is to help authors and publishers get started with a tool or platform, which sometimes can be quite daunting or complicated without dedicated IT support. The seminars will feature short walkthroughs of platforms and tools, as well as talks by and Q&As with the people that have developed, designed or are currently maintaining them and will be complemented by presentations by authors or publishers that have used these tools or platforms to publish an experimental book, who will be sharing their experiences of doing so.

Next to providing dedicated space for audience members to ask questions to the presenters during the seminars, the recordings of these events will be uploaded to the Experimental Publishing Compendium to complement the information on the discussed tools, practices, and books already included in the Compendium.

+ 10
- 0
web/content/seminar_details.md View File

@@ -0,0 +1,10 @@
## Manifold


Date: Thursday 21st November 2024

Time: 17:00 CET / 16:00 BST / 11:00 EDT

Speakers: Terence Smyre, Matthew Gold, & Whitney Trettien

Register at [INSERT LINK HERE](https://copim.ac.uk).

Loading…
Cancel
Save