summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-01-16feat(copy-code): To allow user to copy contents within code block to clipboardArun Mathai
fix(ui): corrections told by tomfran fix(ui): add more contrast to button. fix(ui): loading js as deferred
2025-01-04Merge pull request #62 from deining/fix-typosFrancesco Tomaselli
2025-01-04Wiki: fix typosAndreas Deininger
2025-01-03Update readme and screenshotsFrancesco
2025-01-03Update CONTRIBUTING.mdFrancesco Tomaselli
2025-01-03Create CODE_OF_CONDUCT.mdFrancesco Tomaselli
2025-01-03Create CONTRIBUTING.mdFrancesco Tomaselli
2025-01-03Merge pull request #61 from crnh/mainFrancesco Tomaselli
Add instructions to install as a hugo module
2025-01-02Add instructions to install as a hugo modulecrnh
2025-01-01Add disable comment wikiFrancesco
2025-01-01Merge pull request #59 from Senophyx/mainFrancesco Tomaselli
Adding parameter `disableComment` to disable Giscus comment on specific post.
2025-01-01Modified wikiFrancesco
2025-01-01Removed hardcoded contributorsFrancesco
2025-01-01Add wiki sourceFrancesco
2024-12-31update readmeFrancesco
2024-12-31ReadmeFrancesco
2024-12-25Re-order if statementSenophyx
2024-12-25Adding features to disable comment on specific postSenophyx
2024-12-24Update READMEFrancesco
2024-12-24Updated READMEFrancesco
2024-12-24Merge pull request #57 from crnh/mainFrancesco Tomaselli
Add support for installing theme as Hugo module
2024-12-23Change GitHub usercrnh
2024-12-23Add go module filecrnh
2024-11-27Replace existing social icons definition with 3227 icons from Simple IconsFrancesco
2024-11-23Merge pull request #52 from jpvg10/fix-footer-mathFrancesco Tomaselli
Fix: overwriting footer.html breaks math
2024-11-23move math block to baseof.htmlJuan Pablo Valencia
2024-11-19Merge pull request #50 from jpvg10/translate-datesFrancesco Tomaselli
2024-11-18Increased max image height, heading anchor tag to monospaceFrancesco
2024-11-18Merge pull request #49 from runofthemillgeek/feat/heading-anchorsFrancesco Tomaselli
Add article heading anchors
2024-11-18Merge pull request #48 from runofthemillgeek/feat/img-width-height-attrsFrancesco Tomaselli
Add width and height attrs for local images
2024-11-18adding support for translating datesJuan Pablo Valencia
2024-11-17Add width and height attrs for local imagesSangeeth Sudheer
Image render hook now computes width/height of local images and adds them as attributes. This patch also adds relevant CSS changes to prevent stretchy images. The main reason for this change is to avoid content shifts when images load. Without providing width/height, browser doesn't have info to know the aspect ratio to reserve some space until the image loads. With this change, browser knows the intrinsic size and aspect-ratio to reserve space and avoid content shifts in the page. I believe this also fixes an issue I face in Safari where sometimes, an image below the fold wouldn't load and thus have zero height because it has loading="lazy". To avoid images getting stretched and images overflow/filling the entire screen when their intrinsic size is larger than the container size, I've added some CSS. A configurable `max-height` is present which is used for `figure img` elements. This especially helps when you have tall images like mobile screenshots.
2024-11-17Add article heading anchorsSangeeth Sudheer
Adds heading anchors (#) that appear when user hovers over headings in articles. Clicking the anchor will scroll viewport until heading is aligned to top and update the address bar with the hash. This makes it easy to copy URLs that link to a specific heading in the article.
2024-11-05Merge pull request #43 from runofthemillgeek/feat/md-img-relative-linksFrancesco Tomaselli
Support relative paths in markdown images
2024-10-31Support relative paths in markdown imagesSangeeth Sudheer
Adds code from Hugo's built-in render-image hook and modifies it slightly to support relative image paths in markdown files. Previously, we'd have to spell the absolute path from root of the hugo site or make directories for each individual post which is what Hugo recommend. But this was very inefficient. This change allows us to use editors like Obsidian, VSCode and have them render the images correctly. It also supports Hugo's page bundles for rendering images as a result. Based on the order, I believe page bundles are given priority so that works out. i.e, if you have the following tree: ``` content └── posts ├── _index.md ├── hello.md ├── images │ └── test.png └── test.png ``` You can now include images in `hello.md` in the following ways: ``` ![](test.png) ![](images/test.png) ![](./test.png) ![](./images/test.png) ```
2024-10-30Merge pull request #40 from runofthemillgeek/chore/optimize-readme-imagesFrancesco Tomaselli
Optimize images in README
2024-10-31Optimize images in READMESangeeth Sudheer
2024-10-30Updated ReadmeFrancesco
2024-10-30Add small to header pFrancesco
2024-10-30Merge pull request #36 from runofthemillgeek/fix/font-family-fallbackFrancesco Tomaselli
Add font-family fallback and optimize font loading
2024-10-29Add font-family fallback and optimize font loadingSangeeth Sudheer
Optimized font loading by adding `font-display: swap`. Additionally, moved font-family values into CSS variables.
2024-10-29Merge pull request #38 from runofthemillgeek/feat/link-main-title-to-home-pageFrancesco Tomaselli
2024-10-29Merge pull request #37 from runofthemillgeek/chore/update-gitignoreFrancesco Tomaselli
2024-10-29Merge pull request #35 from runofthemillgeek/patch-1Francesco Tomaselli
2024-10-28Make header title a link to base URL (home page)Sangeeth Sudheer
This is a common pattern found in many sites. I've also added styling to remove the underline.
2024-10-28Update .gitignoreSangeeth Sudheer
Used https://www.toptal.com/developers/gitignore to update the .gitignore file with go, hugo, macos, linux and windows specific entries.
2024-10-28Add support for Open Graph tagsSangeeth Sudheer
This change will allow us to use the `images` property in frontmatter to display a cover image when sharing links to content in social media. Open Graph support is provided out of the box with Hugo and is a one-line change. See docs: https://gohugo.io/templates/embedded/#open-graph
2024-10-18Merge pull request #34 from smdp26/patch-1Francesco Tomaselli
2024-10-18Update USERS.mdsmdp26
2024-10-14Merge pull request #33 from baragoon/mainFrancesco Tomaselli