Static Page Generator #5

Merged
kumi merged 21 commits from dev into main 2024-07-06 14:07:00 +00:00
2 changed files with 8 additions and 6 deletions
Showing only changes of commit 69ef1f7a1a - Show all commits

View file

@ -5,8 +5,9 @@
This is the source code for the [Private.coffee](https://private.coffee) This is the source code for the [Private.coffee](https://private.coffee)
website. website.
It is a simple Flask application that generates the HTML for the website based It is a simple Jinja2 static website generator that compiles the templates in
on the services defined in the `services.json` file. the `templates` directory in conjunction with the JSON files in the `data`
directory to generate the static HTML files in the `build` directory.
## Development ## Development
@ -18,7 +19,8 @@ pip install -r requirements.txt
python main.py python main.py
``` ```
The website will be available at `http://localhost:9810`. The website will be built into the `build` directory, and you can view it by
opening the `index.html` file in your browser.
## License ## License

View file

@ -11,8 +11,8 @@
content="width=device-width, initial-scale=1.0, shrink-to-fit=no" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/> />
<title>{% block title %}{% endblock %} - Private.coffee</title> <title>{% block title %}{% endblock %} - Private.coffee</title>
<link rel="stylesheet" href="/assets/dist/css/bootstrap.min.css" /> <link rel="stylesheet" href="assets/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="/assets/css/base.css" /> <link rel="stylesheet" href="assets/css/base.css" />
</head> </head>
<body> <body>
@ -24,7 +24,7 @@
<div class="row d-lg-flex align-items-lg-center"> <div class="row d-lg-flex align-items-lg-center">
<div class="col p-0"> <div class="col p-0">
<a href="/" <a href="/"
><img src="/assets/img/logo-inv_grad.svg" style="height: 60px" ><img src="assets/img/logo-inv_grad.svg" style="height: 60px"
/></a> /></a>
</div> </div>
<div class="col d-flex"> <div class="col d-flex">