소스 검색

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…
취소
저장