mcmillanmajora commited on
Commit
14007e6
1 Parent(s): a20739e

Update app.py

Browse files

Added exploration and conclusion posts

Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -39,7 +39,12 @@ def get_page_data(post_path: Path):
39
 
40
  def main():
41
  st.set_page_config(layout="wide")
42
- posts = ['posts/welcome.md', 'posts/context.md']
 
 
 
 
 
43
  page_to_show = 'posts/welcome.md'
44
  with st.sidebar:
45
 
 
39
 
40
  def main():
41
  st.set_page_config(layout="wide")
42
+ posts = ['posts/welcome.md',
43
+ 'posts/context.md',
44
+ 'posts/dataset_exploration.md',
45
+ 'posts/model_exploration.md',
46
+ 'posts/conclusion.md'
47
+ ]
48
  page_to_show = 'posts/welcome.md'
49
  with st.sidebar:
50