-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from lakhanmandloi/master
Issue #9 feat: Categories, Tags , Sidebar, Edit Link & Report Issue
- Loading branch information
Showing
22 changed files
with
226 additions
and
160 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,13 @@ | ||
<header> | ||
<div class="wrapper"> | ||
<section class="top-bar"> | ||
<div class="logo"><a href="https://techjoomla.com" target="_blank">{% include logo.html %}</a></div> | ||
{% include navigation.html %} | ||
</section> | ||
<section class="hero_search"> | ||
<h1>Documentation</h1> | ||
<p>Everything you need to know about using and extending Techjoomla products.</p> | ||
{% include search.html %} | ||
</section> | ||
</div> | ||
</header> |
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,19 @@ | ||
<section class="sidebar"> | ||
<div class="logo"><a href="https://techjoomla.com" target="_blank">{% include logo.html %}</a> </div> | ||
<div class="home-link"><a href="/"><i class="material-icons">home</i> Docs Homepage</a></div> | ||
{% assign categories = site.categories | sort %} | ||
{% for category in categories %} | ||
{% assign name = category[0] %} | ||
{% assign posts = category[1] %} | ||
{% assign size = posts | size %} | ||
<div class = 'category-module {% if name == page.categories[0] %}active{% endif %}'> | ||
<span class="heading">{{ name | replace: "-", " " }}</span> | ||
<ul> | ||
{% assign tutorials = posts | sort: "title" %} | ||
{% for tutorial in tutorials | sort: "navigation_weight" %} | ||
<li {% if tutorial.url == page.url %}class="active"{% endif %}><a href="{{ site.baseurl }}{{ tutorial.url }}">{{ tutorial.title }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
{% endfor %} | ||
</section> |
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
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ tags: | |
- Joomla | ||
- REST API | ||
type: Document | ||
navigation_weight: 1 | ||
--- | ||
|
||
# REST API framework for Joomla | ||
|
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ tags: | |
- Joomla | ||
- REST API | ||
type: Document | ||
navigation_weight: 0 | ||
--- | ||
|
||
# Writing your own API Plugin | ||
|
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ tags: | |
- Joomla | ||
- Hierarchy | ||
type: Document | ||
navigation_weight: 1 | ||
--- | ||
# Hierarchy Management | ||
|
||
|
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
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
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
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
Oops, something went wrong.