Commit message (Collapse) | Author | ||
---|---|---|---|
2022-03-23 | sidebar: factor out the "entry" include | Egor Tensin | |
2022-03-23 | sidebar: add ability to hide it | Egor Tensin | |
2022-03-23 | sidebar: don't print anything if there're no posts | Egor Tensin | |
2022-03-23 | navbar: move the hide condition to the navbar include | Egor Tensin | |
2022-03-22 | footer: switch implementation to flexbox | Egor Tensin | |
God, this is better. | |||
2022-03-22 | footer: clean up whitespace in the include | Egor Tensin | |
2022-03-22 | footer: shorter text, get rid of stupid CSS | Egor Tensin | |
WTF was this "display: table;" stuff for? I don't really know. | |||
2022-03-22 | footer: allow LICENSE as well as LICENSE.txtold_footer | Egor Tensin | |
2022-03-22 | mathjax: move the include out of common/ | Egor Tensin | |
2022-03-22 | css: move CSS files to jekyll-theme/ | Egor Tensin | |
2022-03-22 | get rid of custom_{css,js} in favour of a generic mechanism | Egor Tensin | |
2022-03-19 | header: support custom <link> elements | Egor Tensin | |
2022-01-22 | support Google Analytics | Egor Tensin | |
2021-11-11 | footer: shorten the "generated on" note | Egor Tensin | |
2021-11-11 | footer: intelligent license detection | Egor Tensin | |
Pick up /LICENSE.txt by default, if it exists. Use site.github.license otherwise. | |||
2021-11-07 | header: workaround jekyll-github-metadata bug? | Egor Tensin | |
2021-11-05 | sidebar: use site.settings.navbar.github settings | Egor Tensin | |
2021-11-05 | pick up default site.settings values from site.github | Egor Tensin | |
Also, use the default filter more, it's much more convenient. | |||
2021-11-02 | navbar: open GitHub link in a new tab | Egor Tensin | |
2021-11-02 | navbar: add a GitHub link | Egor Tensin | |
2021-10-12 | header: short title for the main page | Egor Tensin | |
2021-10-02 | custom_{css,js}: support absolute URLs | Egor Tensin | |
2021-10-02 | footer: add support for custom_js | Egor Tensin | |
2021-10-02 | header: minor HTML fix | Egor Tensin | |
2021-06-05 | bundle modified Bootstrap 3bundled_bootstrap | Egor Tensin | |
2021-04-10 | navbar: rework front matter interface | Egor Tensin | |
2021-04-10 | bump Bootstrap to 3.4.1 | Egor Tensin | |
2021-04-10 | _includes: move tiny includes to the larger ones | Egor Tensin | |
2021-04-10 | header: bring back custom_css | Egor Tensin | |
It was accidentally removed in 823883f. | |||
2021-04-10 | footer: configurable license | Egor Tensin | |
2021-04-09 | navbar: describe the workarounds | Egor Tensin | |
2021-04-09 | navbar: simpler & more robust | Egor Tensin | |
2021-04-09 | put theme settings under site.settings | Egor Tensin | |
2021-04-08 | add main.css that imports all others | Egor Tensin | |
2021-04-08 | _includes: move paginator.html to posts | Egor Tensin | |
2021-04-08 | use relative_url instead of site.baseurl | Egor Tensin | |
2021-04-08 | paginator: add explanatory comments | Egor Tensin | |
2021-04-08 | paginator: fix page 1 link | Egor Tensin | |
2021-03-09 | MathJax: get rid of the workarond | Egor Tensin | |
Kramdown 2.2.0 supports MathJax v3 now. | |||
2020-05-08 | header: skip project name and/or navbar | Egor Tensin | |
2020-05-07 | don't hard-code branch name | Egor Tensin | |
2020-05-07 | remove everything except Jekyll theme stuff | Egor Tensin | |
I tagged the previous commit to explain what's going on. | |||
2019-09-30 | fix navbar ordering | Egor Tensin | |
2019-09-30 | work around GitHub limitations for MathJax support | Egor Tensin | |
2019-09-30 | add MathJax support | Egor Tensin | |
2018-02-18 | don't zero-pad day number in dates | Egor Tensin | |
2018-02-18 | rename (and repurpose) the repo | Egor Tensin | |
2018-02-18 | _includes: pagination.html -> paginator.html | Egor Tensin | |
2017-06-25 | fix post pagination links | Egor Tensin | |
* Account for custom paginate_path in _includes/common/pagination.html. | |||
2017-06-25 | fix navbar links with multiple pages | Egor Tensin | |
I determine whether a page should be present in the navigation bar by checking if 'navbar' is present in this page's `groups`. My index.html is an example of such page. But `jekyll-paginate` creates a bunch of similar pages, each of them having 'navbar' in their `groups`. Thus, every /pageN appears in the navbar. To get rid of all of them except for the first one, I set `root_page` to `true` in index.html, and only include the first page with `root_page == true` in the navbar. Man, it's a hack if I've ever seen one. |