-
Notifications
You must be signed in to change notification settings - Fork 105
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
1e11517
commit 353e73f
Showing
12 changed files
with
233 additions
and
62 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
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 |
---|---|---|
|
@@ -13,26 +13,27 @@ | |
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. | ||
# You can create any custom variable you would like, and they will be accessible | ||
# in the templates via {{ site.myvariable }}. | ||
title: Your awesome title | ||
title: Solid Project - DEV | ||
email: [email protected] | ||
description: >- # this means to ignore newlines until "baseurl:" | ||
Write an awesome description for your new site here. You can edit this | ||
line in _config.yml. It will appear in your document head meta (for | ||
Google search results) and in your feed.xml site description. | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "" # the base hostname & protocol for your site, e.g. http://example.com | ||
baseurl: '' # the subpath of your site, e.g. /blog | ||
url: '' # the base hostname & protocol for your site, e.g. http://example.com | ||
twitter_username: jcamposv | ||
github_username: jcamposv | ||
github_username: jcamposv | ||
|
||
# Build settings | ||
markdown: kramdown | ||
theme: minima | ||
plugins: | ||
- jekyll-feed | ||
|
||
gems: [neat] | ||
|
||
# Exclude from processing. | ||
- jekyll-font-awesome-sass | ||
- neat | ||
font-awesome: | ||
assets: true | ||
# Exclude from processing. | ||
# The following items will not be processed, by default. Create a custom list | ||
# to override the default setting. | ||
# exclude: | ||
|
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,9 +1,21 @@ | ||
<head> | ||
<title>{{ site.title }}</title> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> | ||
<!--[if lte IE 8]><script src="{{ "assets/js/ie/html5shiv.js" | relative_url }}"></script><![endif]--> | ||
<link rel="stylesheet" href="{{ "assets/main.css" | relative_url }}" /> | ||
<!--[if lte IE 9]><link rel="stylesheet" href="{{ "assets/css/ie9.css" | relative_url }}" /><![endif]--> | ||
<!--[if lte IE 8]><link rel="stylesheet" href="{{ "assets/css/ie8.css" | relative_url }}" /><![endif]--> | ||
</head> | ||
<title>{{ site.title }}</title> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, user-scalable=no" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?" /> | ||
|
||
<link | ||
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" | ||
rel="stylesheet" | ||
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="{{ 'assets/main.css' | relative_url }}" /> | ||
</head> |
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,30 +1,56 @@ | ||
<!-- Wrapper --> | ||
<div id="wrapper"> | ||
|
||
<!-- Header --> | ||
<header id="header"{% if page.layout == "landing" %} class="alt style2"{% endif %}{% if page.layout == "home" %} class="alt"{% endif %}> | ||
<a href="{{ "" | absolute_url }}/" class="logo"><strong>{{ site.title }}</strong> <span>{{ site.subtitle }}</span></a> | ||
<nav> | ||
<a href="#menu">Menu</a> | ||
</nav> | ||
</header> | ||
|
||
<!-- Menu --> | ||
<nav id="menu"> | ||
<ul class="links"> | ||
{% for page in site.pages %} | ||
{% if page.layout == "home" %} | ||
<li><a href="{{ "" | absolute_url }}/">{{ page.title }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
{% for page in site.pages %} | ||
{% if page.layout != "home" and page.nav-menu == true %} | ||
<li><a href="{{ page.url | absolute_url }}">{{ page.title }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
<header class="solid-header"> | ||
<div class="logo"><img src="/assets/img/solid-emblem.svg" /></div> | ||
<nav> | ||
<ul class="links"> | ||
<li> | ||
<a href="#">Learn About Solid <i class="fas fa-angle-down"></i></a> | ||
<ul class="sub-links"> | ||
<li><a href="#">What is Solid</a></li> | ||
<li><a href="#">The Solid Roadmap</a></li> | ||
<li><a href="#">Solid Fundamentals</a></li> | ||
<li><a href="#">Solid Specification</a></li> | ||
<li><a href="#">Solid Team</a></li> | ||
</ul> | ||
<ul class="actions vertical"> | ||
<li><a href="#" class="button special fit">Get Started</a></li> | ||
<li><a href="#" class="button fit">Log In</a></li> | ||
</li> | ||
<li> | ||
<a href="#">Build on Solid <i class="fas fa-angle-down"></i></a> | ||
<ul class="sub-links"> | ||
<li><a href="#">Writing Solid Applications</a></li> | ||
<li><a href="#">Building a Solid Server</a></li> | ||
<li><a href="#">Running a Solid Server</a></li> | ||
</ul> | ||
</nav> | ||
</li> | ||
<li> | ||
<a href="#">Use Solid <i class="fas fa-angle-down"></i></a> | ||
<ul class="sub-links"> | ||
<li><a href="#">Get a Pod</a></li> | ||
<li><a href="#">Use a Solid App</a></li> | ||
<li><a href="#">Specification</a></li> | ||
<li><a href="#">Team</a></li> | ||
<li><a href="#">FAQ</a></li> | ||
<li><a href="#">Press</a></li> | ||
</ul> | ||
</li> | ||
<li> | ||
<a href="#">Community <i class="fas fa-angle-down"></i></a> | ||
<ul class="sub-links"> | ||
<li><a href="#">Blog</a></li> | ||
<li><a href="#">Forum</a></li> | ||
<li><a href="#">Events</a></li> | ||
<li><a href="#">Chat</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
<div class="burger"> | ||
<div class="line1"></div> | ||
<div class="line2"></div> | ||
<div class="line3"></div> | ||
</div> | ||
<ul class="actions"> | ||
<li><i class="fas fa-search"></i></li> | ||
<li> | ||
<a href="#"><i class="fab fa-github"></i></a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</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,96 @@ | ||
ul, | ||
li { | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.solid-header { | ||
z-index: 2; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
min-height: 80px; | ||
width: 100%; | ||
background: $brand-color; | ||
color: #fff; | ||
position: relative; | ||
padding: 0 2em; | ||
box-sizing: border-box; | ||
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.7); | ||
.logo { | ||
height: 60px; | ||
width: 60px; | ||
} | ||
|
||
nav { | ||
display: flex; | ||
justify-content: flex-end; | ||
align-items: center; | ||
align-self: stretch; | ||
width: 60%; | ||
.links { | ||
display: flex; | ||
align-self: stretch; | ||
align-items: center; | ||
width: fit-content; | ||
list-style: none; | ||
margin: 0 2em 0 0; | ||
& > li { | ||
position: relative; | ||
align-self: stretch; | ||
align-items: center; | ||
a { | ||
display: flex; | ||
text-transform: uppercase; | ||
letter-spacing: 0.8px; | ||
color: #fff; | ||
padding: 0 1em; | ||
align-items: center; | ||
justify-content: space-between; | ||
transition: all 300ms ease; | ||
height: 100%; | ||
&:hover { | ||
text-decoration: none; | ||
opacity: 0.8; | ||
} | ||
i { | ||
opacity: 0.6; | ||
padding-left: 6px; | ||
} | ||
} | ||
|
||
&:hover .sub-links { | ||
transform: translateY(0); | ||
opacity: 1; | ||
z-index: 1; | ||
} | ||
.sub-links { | ||
position: absolute; | ||
background: $brand-color; | ||
width: 100%; | ||
right: 0; | ||
opacity: 0; | ||
transform: translateY(-100%); | ||
z-index: 0; | ||
transition: all 300ms ease-in-out; | ||
& > li > a { | ||
padding: 0.5em 1em; | ||
} | ||
} | ||
} | ||
} | ||
.actions { | ||
margin: 0; | ||
list-style: none; | ||
display: flex; | ||
font-size: 2rem; | ||
li { | ||
a { | ||
color: #fff; | ||
} | ||
padding: 0 0.4em; | ||
} | ||
} | ||
} | ||
} |
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
Binary file not shown.
Oops, something went wrong.