Browse Source

adding foreword and frontmatter

main
Simon Bowie 2 years ago
parent
commit
a83f3ea986
4 changed files with 64 additions and 16 deletions
  1. +16
    -0
      web/app/main.py
  2. +18
    -16
      web/content/TOC.md
  3. +1
    -0
      web/content/foreword.md
  4. +29
    -0
      web/content/frontmatter.md

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

@@ -23,3 +23,19 @@ def contents():
text = f.read()
text = markdown.markdown(text)
return render_template('text.html', text=text)

# route for foreword page
@main.route('/foreword/')
def foreword():
with open('content/foreword.md', 'r') as f:
text = f.read()
text = markdown.markdown(text)
return render_template('text.html', text=text)

# route for frontmatter page
@main.route('/frontmatter/')
def frontmatter():
with open('content/frontmatter.md', 'r') as f:
text = f.read()
text = markdown.markdown(text)
return render_template('text.html', text=text)

+ 18
- 16
web/content/TOC.md View File

@@ -15,19 +15,21 @@
<span class="code">↪ add intro text to frontmatter here...</span>
</span>

- [Publisher: Mattering Press](frontmatter/#publisher "links to frontmatter section publisher")
- [Copyright](frontmatter/#copyright "links to frontmatter section copyright")
- [Citation](frontmatter/#citation "links to frontmatter section citation")
- [Acknowledgments](frontmatter/#acknowledgments "links to frontmatter section acknowledgments")
- [Funders](frontmatter/#funders "links to frontmatter section funders")
- [Partners](frontmatter/#partner "links to frontmatter section partners")
- [Contributors](frontmatter/#contributor "links to frontmatter section contributors")
- [Publisher: Mattering Press](/frontmatter/#publisher "links to frontmatter section publisher")
- [Copyright](/frontmatter/#copyright "links to frontmatter section copyright")
- [Citation](/frontmatter/#citation "links to frontmatter section citation")
- [Acknowledgements](/frontmatter/#acknowledgements "links to frontmatter section acknowledgements")
- [Funders](/frontmatter/#funders "links to frontmatter section funders")
- [Partners](/frontmatter/#partners "links to frontmatter section partners")
- [Contributors](/frontmatter/#contributors "links to frontmatter section contributors")

### Foreword
<span class="info" style="display: none;">
<span class="code">↪ add intro text to foreword here...</span>
</span>

- [Foreword](/foreword)

### Section 1: Searching the archive
<span class="info" style="display: none;">
<span class="code">↪ Main search via keywords...</span>
@@ -43,7 +45,7 @@
- [A scattering of images](/interventions/scattering)
- [A random entry](/interventions/random)
- [A juxtaposition of two](/interventions/juxtaposition)
- [A timeline of inventions](interventions/#timeline "links to interventions section timeline of inverntions)
- [A timeline of inventions](interventions/#timeline "links to interventions section timeline of inventions)


### Section 3: Hidden in plain sight
@@ -63,17 +65,17 @@
<span class="code">↪ Some things are all over the patent archive but never made explicit. Off the record presents three artistic works that render these absent-present realities visible...</span>
</span>

- [I Martha Gowans](/offrecord)
- [Sewing labour](offrecord/#sewinglabour "links to off section sewing labour")
- [Performing gender](offrecord/#performinggender "links to off section performing gender")
- [Colonial traces](offrecord/#colonialtraces "links to off section colonial traces")
- [I Martha Gowans](/offrecord "links to off the record section")
- [Sewing labour](offrecord/#sewinglabour "links to off the record section sewing labour")
- [Performing gender](offrecord/#performinggender "links to off the record section performing gender")
- [Colonial traces](offrecord/#colonialtraces "links to off the record section colonial traces")

### Section 5: Making of
<span class="info" style="display: none;">
<span class="code">↪ A series of essays from the makers on the research, methods, tools developed...</span>
</span>

- [On making search-engine book](making/#search-engine-book "links to making section making search-engine book")
- [On interface design](/making/interface)
- [On combining databases and books](/making/databases)
- [Making of - a collective interview](making/#interview "links to making section collective interview")
- [On making search-engine book](making/#search-engine-book "links to making-of section on making search-engine book")
- [On interface design](/making/interface "links to making-of section on interface design")
- [On combining databases and books](/making/databases "links to making-of section on combining databases and books")
- [Making of - a collective interview](making/#interview "links to making-of section collective interview")

+ 1
- 0
web/content/foreword.md View File

@@ -0,0 +1 @@
# Foreword

+ 29
- 0
web/content/frontmatter.md View File

@@ -0,0 +1,29 @@
# Frontmatter

## <a name="publisher"></a>Publisher

Add info + Mattering Press Logo

## <a name="copyright"></a>Copyright

Add info....

## <a name="citation"></a>Citation

Add info....

## <a name="acknowledgements"></a>Acknowledgements

Add info....

## <a name="funders"></a>Funders

Add info....

## <a name="partners"></a>Partners

Add info....

## <a name="contributors"></a>Contributors

Add info....

Loading…
Cancel
Save