-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0aa5ec2
commit 7e5246b
Showing
3 changed files
with
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<article class="doc"> | ||
{{#with page.title}} | ||
<h1 class="page">{{{this}}}</h1> | ||
{{/with}} | ||
{{{page.contents}}} | ||
|
||
{{#each (componentList page.attributes.list_type page.attributes.list_groups site.components)}} | ||
|
||
<h2>{{display}}</h2> | ||
|
||
{{#each components}} | ||
<dt> | ||
<a class="navbar-item" href="{{{relativize this.latest.url}}}">{{this.latest.title}}</a> | ||
</dt> | ||
<dd> | ||
{{this.latest.asciidoc.attributes.component_description}} | ||
</dd> | ||
{{/each}} | ||
|
||
{{/each}} | ||
|
||
{{> pagination}} | ||
</article> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div class="body"> | ||
{{!--> nav --}} | ||
<div class="nav-container" style="width:0em"></div> | ||
{{> "component-list|main"}} | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<main class="article"> | ||
{{> toolbar}} | ||
<div class="content"> | ||
{{#if (eq page.layout '404')}} | ||
{{> article-404}} | ||
{{else}} | ||
{{> toc }} | ||
{{> "component-list|article"}} | ||
{{/if}} | ||
</div> | ||
</main> |