aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes (unfollow)
Commit message (Collapse)Author
2022-01-22support Google AnalyticsEgor Tensin
2021-11-11footer: shorten the "generated on" noteEgor Tensin
2021-11-11footer: intelligent license detectionEgor Tensin
Pick up /LICENSE.txt by default, if it exists. Use site.github.license otherwise.
2021-11-08posts: use CSS for space between category and dateEgor Tensin
2021-11-08posts: use proper flexbox for spacingEgor Tensin
2021-11-08posts: separate category & date visuallyEgor Tensin
2021-11-08shorter dates in post headersEgor Tensin
2021-11-08put post dates beside the headersEgor Tensin
2021-11-07header: workaround jekyll-github-metadata bug?Egor Tensin
2021-11-05sidebar: use site.settings.navbar.github settingsEgor Tensin
2021-11-05pick up default site.settings values from site.githubEgor Tensin
Also, use the default filter more, it's much more convenient.
2021-11-02navbar: open GitHub link in a new tabEgor Tensin
2021-11-02navbar: add a GitHub linkEgor Tensin
2021-10-12header: short title for the main pageEgor Tensin
2021-10-02custom_{css,js}: support absolute URLsEgor Tensin
2021-10-02footer: add support for custom_jsEgor Tensin
2021-10-02header: minor HTML fixEgor Tensin
2021-06-05bundle modified Bootstrap 3bundled_bootstrapEgor Tensin
2021-04-10navbar: rework front matter interfaceEgor Tensin
2021-04-10bump Bootstrap to 3.4.1Egor Tensin
2021-04-10_includes: move tiny includes to the larger onesEgor Tensin
2021-04-10header: bring back custom_cssEgor Tensin
It was accidentally removed in 823883f.
2021-04-10footer: configurable licenseEgor Tensin
2021-04-09categories: list uncategorized posts tooEgor Tensin
2021-04-09categories: adjust links, optional archive linkEgor Tensin
2021-04-09navbar: describe the workaroundsEgor Tensin
2021-04-09navbar: simpler & more robustEgor Tensin
2021-04-09put theme settings under site.settingsEgor Tensin
2021-04-09_includes: site.baseurl -> relative_urlEgor Tensin
2021-04-09_includes: add categories.htmlEgor Tensin
2021-04-09category.html should be an include, not a layoutEgor Tensin
This is similar to posts.html.
2021-04-08add main.css that imports all othersEgor Tensin
2021-04-08_includes: move paginator.html to postsEgor Tensin
2021-04-08_includes: add posts.htmlEgor Tensin
2021-04-08use relative_url instead of site.baseurlEgor Tensin
2021-04-08paginator: add explanatory commentsEgor Tensin
2021-04-08paginator: fix page 1 linkEgor Tensin
2021-03-09MathJax: get rid of the workarondEgor Tensin
Kramdown 2.2.0 supports MathJax v3 now.
2020-05-08header: skip project name and/or navbarEgor Tensin
2020-05-07don't hard-code branch nameEgor Tensin
2020-05-07remove everything except Jekyll theme stuffEgor Tensin
I tagged the previous commit to explain what's going on.
2019-09-30fix navbar orderingEgor Tensin
2019-09-30work around GitHub limitations for MathJax supportEgor Tensin
2019-09-30add MathJax supportEgor Tensin
2018-02-18customize snippets languageEgor Tensin
2018-02-18don't zero-pad day number in datesEgor Tensin
2018-02-18rename (and repurpose) the repoEgor Tensin
2018-02-18_includes: pagination.html -> paginator.htmlEgor Tensin
2017-06-25fix post pagination linksEgor Tensin
* Account for custom paginate_path in _includes/common/pagination.html.
2017-06-25fix navbar links with multiple pagesEgor 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.