Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Fix website render (#3398)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenroller authored Jan 19, 2021
1 parent c724720 commit abac5f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ def make_aboutpage():

def make_homepage():
template = _read_file(os.path.join(TEMPLATES, 'home.html'))
_write_file('index.html', template)
html = wrap_base(template, "ParlAI")
_write_file('index.html', html)


def make_projects_landing():
Expand Down

0 comments on commit abac5f2

Please sign in to comment.