aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/posts (unfollow)
Commit message (Collapse)Author
2019-09-30remove unused stuff: posts, comments, sidebar, etc.Egor Tensin
2018-02-22_includes: pagination.html -> paginator.htmlEgor Tensin
2018-02-18_layouts: sidebar.html -> default.htmlEgor Tensin
2018-02-18add missing  sEgor Tensin
2018-02-18don't zero-pad day number in datesEgor Tensin
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 posts/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 /posts//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.
2017-05-30fix links to "Plots"Egor Tensin
2017-05-30pagination doesn't work on anything but index.htmlEgor Tensin