summaryrefslogtreecommitdiff
path: root/layouts/partials/docs
AgeCommit message (Collapse)AuthorFilesLines
2021-05-19Refactor search, prepare for pre-built indexingAlex Shpak1-9/+10
2021-05-03#281, Copy code block content on clickAlex Shpak1-0/+5
2021-05-03Improve posts title renderingAlex Shpak1-3/+3
2021-05-03#286, Add ability to set image for postsAlex Shpak1-0/+10
2021-05-03collapsed menu right arrow, uncollapsed down arrow (#332)Pim Snel1-1/+0
2021-04-11Add custom commit path for last edited link (#319)Collin Brooks1-1/+2
- A new `BookCommitPath` paramter was added that allows the 'commit' portion of the link to a page's last edited commit hash to be specified. - This is useful when github is not the default repository for a project. Co-authored-by: Collin Brooks <cbrooks@sentryds.com>
2021-02-22Bug Fix: Empty .Site.Params.contentDir (#312)Caleb Jasik1-1/+1
* Bug Fix: Empty .Site.Params.contentDir When .Site.Params.contentDir is left as the default: "content", calling .Site.Params.contentDir returns nothing, or maybe an empty string. To fix this, we set a default value for .Site.Params.contentDir to "content" and the url is built correctly. * Use the `default` function instead of `or` https://gohugo.io/functions/default/
2021-01-26Refactor aside menus, add extra wrapperAlex Shpak1-0/+2
2021-01-26Add before and after partials for toc (#296)Tiger Oakes2-0/+0
Closes #257
2021-01-21Add OnlyTranslated property (#303)Alex Ivanov1-2/+5
* Add OnlyTranslated property Signed-off-by: Alex Ivanov <ai@contributor.pw> * Add newlines Signed-off-by: Alex Ivanov <ai@contributor.pw> * rename property Signed-off-by: Alex Ivanov <ai@contributor.pw>
2020-09-14#231, Allow open collapsed menu without changing pageAlex Shpak1-10/+13
2020-05-25- hide ToC icon in header if ToC not enabled (#225)Vincent Vialard1-0/+2
2020-05-18#215, Fix menu translateX for RTL (negative X)Alex Shpak1-1/+1
2020-05-01Add manifestAlex Shpak2-1/+5
2020-04-28#212, Fix use of IsAncestor after hugo breaking changeAlex Shpak1-1/+1
2020-04-16Edit this page content dir lang independent (#202)tyler711-1/+1
#200
2020-04-14#197, Use RelPermalink to identify nested pages in collapsed menuAlex Shpak1-3/+4
2020-04-12Introduce serviceWorker, disabled by defaultAlex Shpak1-1/+6
2020-04-11#157, Refactor side menu, simpler and renders all pages at rootAlex Shpak1-46/+21
2020-04-10#162, Add docs/date partial, for date customizationAlex Shpak3-4/+9
2020-04-03#187, Use .Permalink for lang switch, align iconsAlex Shpak1-3/+2
2020-04-02#188, Add hreflang metadata to html headAlex Shpak1-3/+7
2020-03-31#186, Make title generation cross-platformAlex Shpak1-2/+1
2020-03-30Fix current page highlight in new Hugo versionAlex Shpak1-3/+3
2020-03-19#140, Use new GetTerms function to fix tag titlesAlex Shpak1-6/+4
2020-03-13#177, #176 Simplify description in html headAlex Shpak1-1/+1
2020-03-13prioritize more related parameters for description #176 (#177)undergroundwires1-1/+2
2020-03-01#155, Do not show collapse indicator in non-section pagesAlex Shpak1-1/+1
2020-02-29#155, Add expand indicator in collapsed sectionAlex Shpak1-9/+10
2020-02-23#150, Add content-before and content-after inject partialsAlex Shpak2-0/+0
2020-02-23Simplify post meta templateAlex Shpak1-5/+0
2020-02-22#150, Add support for menu nesting (before, after menus)Alex Shpak1-0/+7
2020-02-12Add support for hugo menusAlex Shpak3-0/+28
2020-02-10#141, Add page counters to taxonomy side menuAlex Shpak1-1/+2
2020-02-10Make translations list respect weight of languagesAlex Shpak1-6/+6
2020-02-10Improve lang switch accesibilityAlex Shpak1-3/+2
2020-02-04#90, Move inline scripts to file in assets to allow overwriteAlex Shpak1-9/+4
2020-01-24Disable space as search focus keyAlex Shpak1-1/+1
2020-01-24Rework of main template, adds options for more fine customisationAlex Shpak8-46/+29
2020-01-19#134, Focus search field by pressing s or / (#135)Daniel Forssten1-1/+1
* #134, Focus search field by pressing s or / * #134, Refactoring away an array loop using indexOf
2020-01-17#133, move disqus to separate template to allow override, rename BookDisqus ↵Alex Shpak2-2/+6
to BookComments
2020-01-17#132, add urlize to taxonomy templatesAlex Shpak2-5/+6
2020-01-16#130, Fix post metadata links regression, add RelPermalinkAlex Shpak1-1/+1
2020-01-13Remove use of Scratch in search configurationAlex Shpak1-1/+0
2020-01-13#122, Fix post taxonomy list links (include base url)Alex Shpak1-2/+4
2020-01-13Update disqus support, add global site config BookDisqusAlex Shpak1-1/+1
2020-01-13feat: added support for Disqus (#120)Dave Kerr1-0/+4
* feat: added support for Disqus * feat: allow disqus to be disabled through frontmatter Set: bookDisableComments: true On a page to disable disqus for the content.
2020-01-13mobile toc menu (#121)tyler713-3/+9
* Implement TOC for mobile * Uses Page title as label * Label entries so that tapping TOC will hide menu * Switch to medium breakpoint * Correct tos -> toc * toc-menu-control -> toc-control
2019-12-19#66, add taxonomy supportAlex Shpak2-0/+38
2019-12-17replacing any backslashes with forward slashes for edit file url(#116)Thomas M Porter II1-1/+1
Seems to be a Windows related thing. `.File.Path` returns a path with backslashes this adds a replace to make those forward slashes. This appears to fix #115