-
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.
add learn more and events dropdown, projects page WIP
- Loading branch information
Showing
8 changed files
with
191 additions
and
34 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 |
---|---|---|
@@ -1,19 +1,33 @@ | ||
<header id="site-header"> | ||
<div class="wrap"> | ||
<nav class="navigation" role="menu"> | ||
<a href="/" class="navigation-bdand"> | ||
<img src="{{ site.baseurl }}/resources/img/frontpage/shape.svg" alt=""> | ||
</a> | ||
<div class="navigation-panel-button"> | ||
<i class="fa fa-bars"></i> | ||
</div> | ||
<ul class="navigation-menu"> | ||
{% for navItem in site.data.nav-header %} | ||
<li class="navigation-menu-item"> | ||
<a href="{{ site.baseurl }}{{ navItem.url }}" {% if page.url contains navItem.url %}class="active"{% endif %}>{{navItem.title}}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</nav> | ||
</div> | ||
<div class="wrap"> | ||
<nav class="navigation" role="menu"> | ||
<a href="/" class="navigation-bdand"> | ||
<img src="{{ site.baseurl }}/resources/img/frontpage/shape.svg" alt=""> | ||
</a> | ||
<div class="navigation-panel-button"> | ||
<i class="fa fa-bars"></i> | ||
</div> | ||
<ul class="navigation-menu"> | ||
{% for navItem in site.data.nav-header %} | ||
{% if navItem.dropdown %} | ||
<li class="navigation-menu-item dropdown"> | ||
<a href="{{ navItem.url }}" class="dropdown-toggle" data-toggle="dropdown">{{ navItem.title }}</a> | ||
<ul class="dropdown-menu"> | ||
{% for item in navItem.items %} | ||
<li><a href="{{ item.url }}" {% if item.new %}class="new"{% endif %}>{{ item.title }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
</li> | ||
{% else %} | ||
<li class="navigation-menu-item"> | ||
<a href="{{ navItem.url }}" {% if page.url contains navItem.url %}class="active"{% endif %}>{{ navItem.title }}</a> | ||
{% if navItem.new %} | ||
<span class="badge">NEW</span> | ||
{% endif %} | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</nav> | ||
</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
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,39 @@ | ||
{% include headertop.html %} | ||
{% include headerbottom.html %} | ||
|
||
<div class="navigation-fade-screen"></div> | ||
|
||
{% include navbar-inner.html %} | ||
|
||
<main id="inner-main" class="download-page select-language"> | ||
|
||
<!-- Title --> | ||
<section class="title-page"> | ||
<div class="wrap"> | ||
<h1>{{page.title}}</h1> | ||
</div> | ||
</section> | ||
|
||
<section class="books"> | ||
<div class="wrap"> | ||
<div class="inner-box download"> | ||
<div class="main-download"> | ||
<div class="recommended-install"> | ||
<h2>Lorem Ipsum <span style="font-weight: bold;">Lorem Ipsum</span> (Lorem Ipsum)</h2> | ||
<div> | ||
<div class="text-step"> | ||
<p>Lorem ipsum dolor sit amet <code>Lorem Ipsum</code>, | ||
consectetur adipiscing elit. Nam condimentum metus et arcu vehicula semper at sit amet nibh. | ||
Mauris rutrum arcu quis sapien faucibus, sed congue orci accumsan. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
</main> | ||
|
||
{% include footer.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
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,6 @@ | ||
--- | ||
layout: project1 | ||
title: Related Scenic Projects | ||
permalink: /project1/ | ||
|
||
--- |