Created
April 29, 2022 06:58
-
-
Save chrimaho/8ed3828f349b13cb77dc8f427e7d8b0d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set Landing Page ---- | |
with open("./templates/landing_page.html") as file: | |
LANDING_PAGE = file.read() \ | |
.format \ | |
( TITLE = TITLE | |
, DESCRIPTION = DESCRIPTION | |
, VERSION = VERSION | |
, GIT_URL = GIT_URL | |
, API_ENDPOINT = API_ENDPOINT | |
, REPO_DIR = REPO_DIR | |
, CONTACT_NAME = CONTACT_DETAILS["name"] | |
, CONTACT_EMAIL = CONTACT_DETAILS["email"] | |
, CONTACT_URL = CONTACT_DETAILS["url"] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment