Tianyi CodeLab Homepage
This repository contains the source code of Tianyi CodeLab Homepage.
Site Builder 101
Tianyi CodeLab Homepage is built with a site builder developed by ourselves. The site builder is written in Python, and it is available in this repository.
To build the homepage, you need install the prerequisites listed below:
- Python 3.12
- PDM
After installing the prerequisites and cloning the repository, you can build the homepage by running the following commands:
pdm install
pdm start
A Deep Dive
Directory Structure
The directory structure of this repository is as follows:
data/{slug}.yaml
: The render context data for the.html
pages.html/{slug}.html
: The.html
templates. The site builder will render the.html
pages with the data in the corresponding.yaml
files with Jinja2.public/
: The assets/public files directory. Files in this directory will be copied directly to thedist
.dist/
: The output directory of the site builder.images
: The directory to place images. Note that the images will be copied to/assets
path instead ofimages
.
Build Process
The build process is as follows:
- Read each
.html
file in thehtml/
directory. - Render the HTML pages.
- The site builder will render each
.html
file with the corresponding.yaml
file in thedata/
directory. - Outputs will be placed in the
dist/
directory with.html
extension. - One example is rendering
html/hi/home.html
withdata/hi/home.yaml
todist/hi/home.html
. If the.yaml
file does not exist, the site builder will render the.html
file with an empty context ({}
). - Ohter files not having
.html
extension will be ignored.
- The site builder will render each
- For each images in
images/
, the site builder do the following:- For
jpg, jpeg, png
images, convert them towebp
format. For example.images/hi.png
will be converted todist/assets/hi.webp
. - For
ico, svg, webp
images, copy them directly to thedist/assets
directory. - Other files will be ignored.
- For
- Copy the files in the
public/
directory to thedist/
directory recursively.
For all the steps, hidden files (files starting with .
) will be ignored.
HTTP Server Considerations
We use prettified URLs that strips .html
extension. To make this work on server, you need to configure the server to rewrite the URLs. Here is an example of Nginx configuration:
location / {
try_files $uri $uri/ $uri.html =404;
}
We also use home.html
instead of index.html
for better-looking URLs. You also need to configure the server. Here is an example of Nginx configuration:
index home.html index.html;
Please note that such url-prettifying behavior is optional. It is not built-in in the site builder, but in our site source code we choose to use it.
License
The content is shared under the CC BY-NC-SA 4.0 license,
Some resources may have their own licenses. Trademark ristricions may apply.