-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Theme: Implement
docsearch:amethyst_pagetype_navigation=1
This aids docsearch-scraper (e.g. for Typesense, Melisearch, or Algolia) by offering a way to exclude these navigation overview pages. The current qunitjs.com site gets around this by luck. It uses jekyll-algolia to index the site proactively during deployment before the final pages are built, and the content that jekyll sees on "group" and other overview pages is the empty string, since the "content" there is effectively generated by the layout template in the next phase.
- Loading branch information
Showing
7 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
amethyst: | ||
toc: false | ||
prepend_description_heading: false | ||
pagetype: navigation | ||
|
||
# Parameters: | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
layout: wrapper | ||
amethyst: | ||
pagetype: navigation | ||
--- | ||
|
||
<div class="main main--columns wrapper"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
layout: wrapper | ||
amethyst: | ||
pagetype: navigation | ||
--- | ||
|
||
<div class="main main--columns wrapper"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
layout: wrapper | ||
amethyst: | ||
pagetype: navigation | ||
--- | ||
|
||
<div class="main main--columns wrapper"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
layout: wrapper | ||
amethyst: | ||
pagetype: navigation | ||
--- | ||
|
||
<div class="main main--columns wrapper"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
--- | ||
layout: wrapper | ||
amethyst: | ||
pagetype: navigation | ||
robots: index | ||
--- | ||
|
||
<div class="main main--columns wrapper"> | ||
|