|
|
@@ -21,7 +21,7 @@ def interface(): |
|
|
|
with open('content/section_5/on-interface-design.md', 'r') as f: |
|
|
|
text = f.read() |
|
|
|
text = markdown.markdown(text) |
|
|
|
return render_template('text.html', text=text) |
|
|
|
return render_template('making.html', text=text) |
|
|
|
|
|
|
|
# route for databases essay |
|
|
|
@making.route('/making/databases/') |
|
|
@@ -29,4 +29,4 @@ def databases(): |
|
|
|
with open('content/section_5/on-combining-databases-and-books.md', 'r') as f: |
|
|
|
text = f.read() |
|
|
|
text = markdown.markdown(text) |
|
|
|
return render_template('text.html', text=text) |
|
|
|
return render_template('making.html', text=text) |