summaryrefslogtreecommitdiff
path: root/_includes/header.html
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-08 16:36:31 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-08 16:36:31 -0600
commite182245d3205d929881f51da9b48d6c4ed97a682 (patch)
treed390e8754dec70a9c9293afb801321b96f043c15 /_includes/header.html
Commit inicialHEADmaster
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..978ef71
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,19 @@
+<header class="navigation" role="banner">
+ <div class="navigation-wrapper">
+ <a href="{{ site.baseurl }}/" class="logo">
+ {% if site.logo %}
+ <img src="{{ site.logo | prepend: site.baseurl }}" alt="{{ site.title }}">
+ {% else %}
+ <span>{{ site.title }}</span>
+ {% endif %}
+ </a>
+ <a href="javascript:void(0)" class="navigation-menu-button" id="js-mobile-menu">
+ <i class="fa fa-bars"></i>
+ </a>
+ <nav role="navigation">
+ <ul id="js-navigation-menu" class="navigation-menu show">
+ {% include nav_links.html %}
+ </ul>
+ </nav>
+ </div>
+</header>