Skip to content

Commit 892ecec

Browse files
committed
All new OS Website πŸ‘‘
1 parent 3955348 commit 892ecec

File tree

16 files changed

+321
-51
lines changed

16 files changed

+321
-51
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 1 addition & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,2 @@
1-
# Stylesheet
2-
assets/css/app.css
3-
4-
# JavaScript
5-
assets/js/all.js
6-
rev-manifest.json
7-
8-
# Cache
9-
.sass-cache/
10-
*.sassc
11-
*.scssc
12-
13-
# Mac OSX
14-
.DS_Store
15-
Icon
16-
*.swp~
17-
18-
# Thumbnails
19-
._*
20-
21-
# Files that might appear on external disk
22-
.Spotlight-V100
23-
.Trashes
24-
25-
# Windows
26-
Thumbs.db
27-
ehthumbs.db
28-
29-
# Folder config file
30-
Desktop.ini
31-
32-
# Recycle Bin used on file shares
33-
$RECYCLE.BIN/
34-
35-
# gulp.js
36-
.gulp/
37-
node_modules/**/*
38-
npm-debug.log
39-
40-
# Jekyll
411
_site
42-
.jekyll-metadata
43-
44-
# Vendor directory
45-
assets/vendor/
46-
bower_components
47-
48-
# Ruby
49-
Gemfile.lock
50-
51-
# Composer
52-
composer.lock
2+
.sass-cache

β€Ž_config.ymlβ€Ž

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Site settings
2+
title: Skcript Open Source
3+
email: friends@skcript.com
4+
description: > # this means to ignore newlines until "baseurl:"
5+
We get benefited from open-source code every single day. And here are some of the projects we're giving back to the community.
6+
baseurl: "" # the subpath of your site, e.g. /blog/
7+
url: "http://skcript.github.io" # the base hostname & protocol for your site
8+
twitter_username: SkcriptHQ
9+
github_username: skcript
10+
11+
# Build settings
12+
markdown: kramdown

β€Ž_includes/footer.htmlβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!-- All the JS Stuff goes here -->
2+
<script src="https://cdn.jsdelivr.net/foundation/6.2.1/foundation.min.js"></script>
3+
<script type="text/javascript">
4+
$(document).foundation();
5+
</script>

β€Ž_includes/head.htmlβ€Ž

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width initial-scale=1" />
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{{ site.description }}">
8+
9+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
10+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
11+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
12+
</head>

β€Ž_includes/header.htmlβ€Ž

Whitespace-only changes.

β€Ž_layouts/default.htmlβ€Ž

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include header.html %}
9+
10+
<div class="row align-center">
11+
<div class="small-12 medium-12 large-12 small-centered medium-centered large-centered">
12+
{{ content }}
13+
</div>
14+
</div>
15+
16+
{% include footer.html %}
17+
18+
</body>
19+
20+
</html>

β€Ž_layouts/page.htmlβ€Ž

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

β€Ž_layouts/post.htmlβ€Ž

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} β€’ {{ page.author }}{% endif %}{% if page.meta %} β€’ {{ page.meta }}{% endif %}</p>
9+
</header>
10+
11+
<article class="post-content">
12+
{{ content }}
13+
</article>
14+
15+
</div>

β€Ž_sass/_foundation.scssβ€Ž

Lines changed: 2 additions & 0 deletions
Large diffs are not rendered by default.

β€Ž_sass/_layout.scssβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)