Преглед изворни кода

fixing table of contents page

solr_update
Simon Bowie пре 2 година
родитељ
комит
22fee95045
1 измењених фајлова са 1 додато и 6 уклоњено
  1. +1
    -6
      web/app/main.py

+ 1
- 6
web/app/main.py Прегледај датотеку

@@ -19,12 +19,7 @@ def index():
# route for table of contents page
@main.route('/contents/')
def contents():
with open('content/toc.md', 'r') as f:
with open('content/TOC.md', 'r') as f:
text = f.read()
text = markdown.markdown(text)
return render_template('text.html', text=text)

@main.route('/test/')
def test():
text = "whatever"
return render_template('text.html', text=text)

Loading…
Откажи
Сачувај