aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials
Commit message (Collapse)AuthorAgeFiles
* Fix social cardHEADmainmiraikumiko2 days2
|
* Fix thememiraikumiko3 days1
|
* Fix thememiraikumiko7 days1
|
* Update social linksmiraikumiko2025-04-143
|
* Add author meta tag (by @ttybitnik)Caio Lente2024-04-081
|
* Fix #13Caio Lente2024-03-052
|
* Heuristic for reducing font size on social cards with long titlesCaio Lente2024-02-061
|
* Merge branch 'main' into style/hermanCaio Lente2024-01-041
|\
| * Update author paramCaio Lente2024-01-041
| |
| * Update social card logicCaio Lente2024-01-041
| |
* | Merge remote-tracking branch 'origin/main' into style/hermanCaio Lente2023-10-192
|\|
| * Make images work with baseURLs containing a subdirCaio Lente2023-10-182
| |
* | Merge remote-tracking branch 'origin/main' into style/hermanCaio Lente2023-10-171
|\|
| * Improved RSS templateCaio Lente2023-10-171
| |
| * Move 'reply by email' button to the bottom of every postCaio Lente2023-10-171
| |
* | Merge origin/main into style/hermanCaio Lente2023-10-172
|\|
| * Fix #2Caio Lente2023-09-291
| |
| * Add i18n to skiplinkCaio Lente2023-09-291
| |
| * Merge branch 'main' into language-params-fixCaio Lente2023-09-291
| |\
| | * Merge pull request #5 from 2kool4idkwhat/mainCaio Lente2023-09-291
| | |\ | | | | | | | | a11y: add a "skip to main content" link
| | | * a11y: add skipnav link2kool4idkwhat2023-07-121
| | | |
| | * | Update deprecated parameters useSaid Neder2023-08-201
| | |/
| * / fix: change use of .Site.Language.Params.params -> .Site.Paramshuantian2023-06-132
| |/ | | | | | | .Site.Language.Params was deprecated in Hugo 0.112.0, see https://gohugo.io/content-management/multilingual/#changes-in-hugo-01120
* | Bring updates from mainCaio Lente2023-10-162
| |
* | Update social cardsC. Lente2023-04-271
|/
* Make website title H1C. Lente2023-04-251
|
* Better social card logicC. Lente2023-03-042
|
* Dynamically generated social cardsC. Lente2023-03-042
|
* Add social links to configC. Lente2023-03-041
|
* Fix lighthouse uncrawlable linksC. Lente2023-02-271
|
* Use relURLsC. Lente2023-02-133
|
* Better RSSC. Lente2023-02-101
|
* Generalize translation menusC. Lente2023-02-101
|
* Move to double quotesC. Lente2023-02-091
|
* Use site.Home.Permalink instead of paramC. Lente2023-02-091
|
* Fetch menus from YAMLC. Lente2023-02-091
|
* Less menus on configC. Lente2023-02-091
|
* Remove style=C. Lente2023-02-091
|
* Reproduce lente.dev setupC. Lente2023-02-093
|
* Bring files from personal blogC. Lente2023-02-014
|
* Revert "Fix link to »Blog« on demo page"Jan Raasch2022-09-151
| | | | | | | | This reverts commit 9863ab4f50b81073367145c3edc5a991bada5e53. Whoops. I should update my local version of `hugo` 😊. This broke the build, see https://github.com/janraasch/hugo-bearblog/actions/runs/3057300422/jobs/4932310672
* Fix link to »Blog« on demo pageJan Raasch2022-09-151
| | | | The demo is hosted at https://janraasch.github.io/hugo-bearblog/, but currently the link is »/blog«, so we end up at https://janraasch.github.io/blog with a `404` 🥹.
* Use `overflow-x: auto` to avoid spilling long lines (#49)Andrew Jorgensen2022-09-151
|
* Fix a remaining issue with b8c8871 (#20) (#25)Andrew Jorgensen2021-08-131
| | | | | | | | | | | | | | | | | | | It turns out my original proposal for #20 was correct, but not for the reasons I thought. We need to set both `background-color` and `color` to `initial` on `div.highlight pre` because that's where Chroma sets those colors (including the default `color` if configured). Setting to `initial` there makes it so that if the selected style *doesn't* configure a default color, we'll use the `initial` color, which is going to be the right choice because the reason style author left that unset because they didn't consider dark color schemes messing with their style. Then we `unset` the colors on `div.highlight code` because otherwise the `code` colors from the theme will override the colors that would otherwise be inherited from Chroma's `<pre>` element. Stricly speaking I can't say that setting `background-color` to `initial` is required, because I haven't found a Chroma style that *doesn't* set a `background-color`, but I figure it's possible (at least for a light theme) and it makes sense to fix it just in case, and causes no harm otherwise.
* Revert "Do not touch div.highlight styles"Jan Raasch2021-08-131
| | | | This reverts commit d3a86c7c6d23cfe6f82d7d8405e3ab522e693a22.
* Do not touch div.highlight stylesJan Raasch2021-08-091
| | | | Closes #25
* fix: code highlighting using Chroma (#20)Andrew Jorgensen2021-04-131
| | | | | | | | | | | | | | | | | | | | | | | | | Chroma sets `color` (usually) and `background-color` directly on a `<pre>` element under a `<div class="highlight">` but the theme was interfering with those color settings from both the `code` and `pre code` selectors. Since Chroma highlighting is under a `highlight` class we can `unset` the colors that are set by the `code` selector elsewhere, so that under a `<code>` element that's under a `<div class="highlight">` it will just inherit from the `<pre>` above it where Chroma sets all it's colors. The `color: initial;` instead of `color: unset;` is needed because some Chroma styles don't set a default text color, and if you use `unset` instead that lets the browser use a lighter default text color when using a dark color scheme. That's a sort of long winded way of saying that I think I've fixed the color interference problem in a way that won't mess with anything else in the theme. I've tested this on a wide selection of Chroma styles, with both light and dark color schemes and it seems to work correctly in all cases. Which is to say that Chroma appears to have full control of both `color` and `background-color` for code blocks that it's highlighting. Fixes #19
* chore: remove unused partial 🤷🏼‍♂️ 😇Jan Raasch2020-10-021
|
* feat: add dark color scheme for dark modeJan Raasch2020-10-011
| | | | see https://github.com/HermanMartinus/bearblog/pull/51
* feat: hide blog link if page not created (#4)Nick Badal2020-09-171
| | | Allows this theme to be used for sites that do not have a blog.