Commit Graph

27 Commits (7b3696b877c33f8dc605be1f4f4a688fe0df5b84)

Author SHA1 Message Date
Aiden Bai b4ff12ca0b
Fix latex
Aiden Bai 9fc71603ba
Merge
Aiden Bai d38f9bec70
Rename API and generalize router API
Aiden Bai e4cc625c33
Add future note about init function
Aiden Bai 白宇彤 3789df80e4
Merge branch 'hugo' into fix-popover
Aiden Bai 3c660dd9b5
Remove unnecessary 'url' param in drawGraph
Aiden Bai 77485b754d
Fix popover
Jacky Zhao 24d08d580d cfg: make SPA optional
Aiden Bai f1b85fb6d9
Fix clarification comment
Aiden Bai 40d216759c
Expand template
Aiden Bai 5c602ab16f
Add clarification comments
Aiden Bai bcb166c21c
Add router
Jacky Zhao 25b5ac43dd fix: favicon not showing on non-root domain
Jacky Zhao cc86136bcb feat: basic latex support
Claudio Yanes 7f6523337c Move popover to the end of the page
The popover script doesn’t ever start in until the DOM has finished
Loading, so wait for the script to be downloaded and parsed before
Showing the content to the user makes no sense.
Claudio Yanes 7e0f2e4449 Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.

Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
Claudio Yanes 1313bd9779 Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
Jacky Zhao 3b3e6ec3b2 fix relative pathing for dynamic fetch
Jacky Zhao fcd5d2807d feat: dynamically fetch indices
Jacky Zhao c520db4882 fix: , change css load order
Jacky Zhao 4a3c4fdef5 popover implementation
Jacky Zhao 6fbfa7170b various font and colour fixes
Brecht Savelkoul f9920f6d73 Execute darkmode script before first render
jackyzha0 92d18b1ee5 more docs + link fixing
jackyzha0 6896cb007b proper backlink and graph display in footer
jackyzha0 ea69050587 add base pages
jackyzha0 c01138a81c add base structure