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