-
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
Showing
16 changed files
with
177 additions
and
352 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
Empty file.
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 @@ | ||
# @see https://mycyberuniverse.com/jekyll-bootstrap-dynamic-navigation-highlighting-active-element.html |
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,27 @@ | ||
# @see https://mycyberuniverse.com/jekyll-bootstrap-dynamic-navigation-highlighting-active-element.html | ||
|
||
|
||
# Trivia: | ||
# - "documentum" | ||
# - https://en.wiktionary.org/wiki/documentum | ||
# - "nāvigandum" | ||
# - https://en.wiktionary.org/wiki/navigo#Latin | ||
|
||
- title: About | ||
url: /about.html | ||
- title: Team | ||
url: /team.html | ||
- title: Contact | ||
url: /contact.html | ||
- title: Store | ||
url: /store.html | ||
- title: Support | ||
url: /support.html | ||
sublinks: | ||
- title: FAQ | ||
url: /faq.html | ||
- title: Documentation | ||
url: /documentation.html | ||
- title: separator | ||
- title: Customer Support | ||
url: /customer-support.html |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{% comment %} | ||
- https://mycyberuniverse.com/jekyll-bootstrap-dynamic-navigation-highlighting-active-element.html | ||
{% endcomment %} | ||
|
||
<nav id="navbar" class="collapse navbar-collapse"> | ||
<ul class="nav navbar-nav"> | ||
{% assign links = site.data.navigation %} | ||
{% for link in links %} | ||
{% assign class = nil %} | ||
{% if page.url contains link.url %} | ||
{% assign class = 'active' %} | ||
{% endif %} | ||
{% if link.sublinks %} | ||
<li class="dropdown {{ class }}"> | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ link.url }}" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{ link.title }} <span class="caret"></span></a> | ||
<ul class="dropdown-menu"> | ||
{% for sublink in link.sublinks %} | ||
{% if sublink.title == 'separator' %} | ||
<li role="separator" class="divider"></li> | ||
{% else %} | ||
<li> | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ sublink.url }}">{{ sublink.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</li> | ||
{% else %} | ||
<li class="{{ class }}"> | ||
<a href="{{ site.url }}{{ site.baseurl }}{{ link.url }}">{{ link.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</nav> |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!-- | ||
Trivia: | ||
- "pedem" | ||
- https://en.wiktionary.org/wiki/pes#Latin | ||
--> | ||
|
||
<footer class="site-footer h-card"> | ||
<data class="u-url" href="{{ "/" | relative_url }}"></data> | ||
|
||
<div class="container"> | ||
|
||
<div class="footer-col-wrapper"> | ||
<div class="footer-col"> | ||
<p class="feed-subscribe"> | ||
<a href="{{ 'feed.xml' | relative_url }}"> | ||
<svg class="svg-icon orange"> | ||
<use xlink:href="{{ 'assets/minima-social-icons.svg#rss' | relative_url }}"></use> | ||
</svg><span>Subscribe</span> | ||
</a> | ||
</p> | ||
{%- if site.author %} | ||
<ul class="contact-list"> | ||
{% if site.author.name -%} | ||
<li class="p-name">{{ site.author.name | escape }}</li> | ||
{% endif -%} | ||
{% if site.author.email -%} | ||
<li><a class="u-email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li> | ||
{%- endif %} | ||
</ul> | ||
{%- endif %} | ||
</div> | ||
<div class="footer-col"> | ||
<p>{{ site.description | escape }}</p> | ||
</div> | ||
</div> | ||
|
||
<div class="social-links"> | ||
{%- include social.html -%} | ||
</div> | ||
|
||
</div> | ||
|
||
</footer> |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ page.lang | default: site.lang | default: "en" }}"> | ||
|
||
{%- include head.html -%} | ||
|
||
<body> | ||
|
||
{%- include header.html -%} | ||
|
||
<main class="page-content" aria-label="Content"> | ||
<div class="wrapper"> | ||
{{ content }} | ||
</div> | ||
</main> | ||
|
||
{%- include footer.html -%} | ||
|
||
</body> | ||
|
||
</html> |
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,18 @@ | ||
--- | ||
published: false | ||
--- | ||
|
||
# Ajuda para mantenedores | ||
|
||
> TODOs: | ||
> - https://forestry.io/blog/creating-a-multilingual-blog-with-jekyll/ | ||
## Extensões e plugins | ||
### VSCode | ||
|
||
<!-- | ||
- `ext install neilding.language-liquid` | ||
- https://github.com/GingerBear/vscode-liquid | ||
- https://marketplace.visualstudio.com/items?itemName=neilding.language-liquid | ||
- https://github.com/siteleaf/liquid-syntax-mode | ||
--> |
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.