diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | html/404.html | 1 | ||||
-rw-r--r-- | include/achernar.php | 12 | ||||
-rw-r--r-- | index.php | 6 |
4 files changed, 17 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 387ee6c..c4ccf5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 11.10 + +* Elaborate pages +* Fix blank screen with empty cache + ## 11.9 * Refactor server scripts diff --git a/html/404.html b/html/404.html index c06882f..2b30498 100644 --- a/html/404.html +++ b/html/404.html @@ -33,6 +33,7 @@ flex-direction: column; height: 100vh; justify-content: center; + user-select: none; width: 100vw; } diff --git a/include/achernar.php b/include/achernar.php index 1530e98..fb6229b 100644 --- a/include/achernar.php +++ b/include/achernar.php @@ -113,22 +113,22 @@ <br> <ul> <li> - <p>Carrois Apostrophe: <a href="https://fonts.google.com/specimen/Fira+Mono/"><span style="font-family: Fira Mono;">Fira Mono</span></a></p> + <p>Carrois Apostrophe: <a href="https://fonts.google.com/specimen/Fira+Mono/"><strong style="font-family: Fira Mono;">Fira Mono</strong></a></p> </li> <li> - <p>Roman Shamin & the “people” at Evil Martians 👽: <a href="https://fonts.google.com/specimen/Martian+Mono/"><span style="font-family: Martian Mono;">Martian Mono</span></a></p> + <p>Roman Shamin & the “people” at Evil Martians 👽: <a href="https://fonts.google.com/specimen/Martian+Mono/"><strong style="font-family: Martian Mono;">Martian Mono</strong></a></p> </li> <li> - <p>Sorkin Type: <a href="https://fonts.google.com/specimen/Merriweather/"><span style="font-family: Merriweather;">Merriweather</span></a></p> + <p>Sorkin Type: <a href="https://fonts.google.com/specimen/Merriweather/"><strong style="font-family: Merriweather;">Merriweather</strong></a></p> </li> <li> - <p>Julieta Ulanovsky, Sol Matas, Juan Pablo del Peral, and Jacques Le Bailly: <a href="https://fonts.google.com/specimen/Montserrat/"><span style="font-family: Montserrat;">Montserrat</span></a></p> + <p>Julieta Ulanovsky, Sol Matas, Juan Pablo del Peral, and Jacques Le Bailly: <a href="https://fonts.google.com/specimen/Montserrat/"><strong style="font-family: Montserrat;">Montserrat</strong></a></p> </li> <li> - <p>Claus Eggers Sørensen: <a href="https://fonts.google.com/specimen/Playfair+Display/"><span style="font-family: Playfair Display;">Playfair Display</span></a></p> + <p>Claus Eggers Sørensen: <a href="https://fonts.google.com/specimen/Playfair+Display/"><strong style="font-family: Playfair Display;">Playfair Display</strong></a></p> </li> <li> - <p>Matt McInerney, Pablo Impallari, and Rodrigo Fuenzalida: <a href="https://fonts.google.com/specimen/Raleway/"><span style="font-family: Raleway;">Raleway</span></a></p> + <p>Matt McInerney, Pablo Impallari, and Rodrigo Fuenzalida: <a href="https://fonts.google.com/specimen/Raleway/"><strong style="font-family: Raleway;">Raleway</strong></a></p> </li> </ul> </section> @@ -153,5 +153,9 @@ </html> <?php - dump_cache($cache_addr, ob_get_contents()); + $page_buffer = ob_get_contents(); + ob_end_clean(); + + echo $page_buffer; + dump_cache($cache_addr, $page_buffer); ?> |