summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2024-10-14Update USERS.mdSerhiy
add https://as215887.net
2024-10-10Merge pull request #31 from Frankkkkk/patch-1Francesco Tomaselli
single view: markdownify summary
2024-10-10single view: markdownify summaryFrank Villaro-Dixon
The summary is not markdownified, and thus we see the md content on the summary. This fixes that
2024-10-05Merge pull request #29 from khalidzohaib/patch-1Francesco Tomaselli
Update USERS.md
2024-10-05Update USERS.mdZohaib Khalid
Added myself as a user.
2024-09-21Merge pull request #26 from simon-siggaard/mainFrancesco Tomaselli
add support for Mermaid diagrams
2024-09-20add support for Mermaid diagramssimon-siggaard
2024-09-17Merge pull request #24 from arunmathaisk/mainFrancesco Tomaselli
feat: Content License and Copyright holder as Footer
2024-09-15fix: set deaflt value of showFooter as trueArun
2024-09-15Merge branch 'tomfran:main' into mainArun Mathai S.K.
2024-09-15feat: show generic footerArun
2024-09-14Merge pull request #23 from arunmathaisk/patch-1Francesco Tomaselli
2024-09-14feat: Content License and Copyright holder as FooterArun
2024-09-13Update USERS.mdArun Mathai S.K.
Thanks for the theme @tomfran ;)
2024-09-02Merge pull request #19 from vxnick/umami-for-productionFrancesco Tomaselli
Enable Umami analytics in Production only
2024-09-02Merge pull request #18 from vxnick/override-single-datetimeFrancesco Tomaselli
Allow the date/time format on the single template to be overridden
2024-09-02Enable Umami analytics in Production onlyNick Savage
This will prevent analytics collection when testing locally.
2024-09-02Allow the date/time format on the single template to be overriddenNick Savage
Example: ```toml [params] singleDateFormat = '2 January 2006' ```
2024-08-26Add users fileFrancesco
2024-08-25Not show breadcrumbs on homepageFrancesco
2024-08-21Removed duplicated favicon.ico entryFrancesco
2024-08-21Merge pull request #16 from mesmur/feat/set-favicon-pathFrancesco Tomaselli
feat(partials): allow setting of favicon path
2024-08-21feat(partials): allow setting of favicon pathMaahir Ur Rahman
chore(partials): add explicit links for all favicon types
2024-08-13Uniform umami and comments inclusionFrancesco
2024-08-13Merge pull request #12 from jkfujr/mainFrancesco Tomaselli
Added a configurable option to open a new tab when clicking on the menu and support for Umami along with relevant configurable options.
2024-08-13Merge branch 'main' into mainFrancesco Tomaselli
2024-08-13Merge pull request #14 from jder/mainFrancesco Tomaselli
Add RSS feed link
2024-08-12Add RSS feed linkJesse Rusak
2024-08-11Update header.html and add support for UmamiP家单推人
- Updated header.html with necessary changes. - Added support for Umami along with relevant configurable options. - Included a new umami.html file for tracking.
2024-07-29Merge pull request #13 from francoposa/mainFrancesco Tomaselli
header partial: replace deprecated .Path access with lower .Name
2024-07-27header partial: replace deprecated .Path access with lower .Namefrancoposa
2024-07-19Merge pull request #10 from GigaArpit/patch-1Francesco Tomaselli
2024-07-19Implement Canonical URLArpit Gupta
This change adds canonical URL to all pages. Reference: https://developers.google.com/search/docs/crawling-indexing/consolidate-duplicate-urls#rel-canonical-link-method