Skip to content

Commit 3f00f6d

Browse files
init
0 parents  commit 3f00f6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+9191
-0
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: [ andrewbanchich ]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site/
2+
.sass-cache/
3+
.jekyll-metadata
4+
Gemfile.lock
5+
*.gem
6+
.jekyll-cache

.gitlab-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
image: ruby
2+
3+
pages:
4+
stage: build
5+
script:
6+
- gem install jekyll
7+
- jekyll build -d public
8+
- gem build spectral_jekyll_theme.gemspec
9+
artifacts:
10+
paths:
11+
- public
12+
- "spectral_jekyll_theme-*.gem"
13+
only:
14+
- master

CHANGELOG

Whitespace-only changes.

CONTRIBUTING.md

Whitespace-only changes.

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source "https://rubygems.org"
2+
gemspec

LICENSE.txt

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

README.md

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Spectral - Jekyll Theme
2+
3+
A Jekyll version of the "Spectral" theme by [HTML5 UP](https://html5up.net/).
4+
5+
![Spectral Theme](screenshot.jpg "Spectral Theme")
6+
7+
# How to Use
8+
9+
For those unfamiliar with how Jekyll works, check out [https://jekyllrb.com/](https://jekyllrb.com/) for all the details,
10+
or read up on just the basics of [front matter](https://jekyllrb.com/docs/frontmatter/), [writing posts](https://jekyllrb.com/docs/posts/),
11+
and [creating pages](https://jekyllrb.com/docs/pages/).
12+
13+
- **GitLab**: Simply fork this repository and start editing the `_config.yml` file!
14+
- **GitHub**: Fork this reposity and create a branch named `gh-pages`, then start editing the `_config.yml` file! The `.gitlab-ci.yml` file is only needed for GitLab Pages, so feel free to delete this if you are using GitHub instead.
15+
16+
# Added Features
17+
18+
* Add your **social profiles** easily in `_config.yml`. Only social profiles buttons you enter in `config.yml` show up on the site footer!
19+
* **Coming soon**: Set **featured images** in front matter.
20+
* **Coming soon**: Front page sections automatically pull from posts.
21+
22+
# Issues
23+
24+
If you would like to report a bug, ask a question, request a feature, feel free to do so on [the GitLab repository](https://gitlab.com/andrewbanchich/spectral-jekyll-theme) and I will be more than happy to help!
25+
26+
Alternatively, you can open an issue via email by emailing [incoming+andrewbanchich/spectral-[email protected]](mailto:incoming+andrewbanchich/[email protected]).
27+
28+
The GitHub repository is simply a mirror of the GitLab repository.
29+
30+
# Credits
31+
32+
Original README from HTML5 UP:
33+
34+
```
35+
Spectral by HTML5 UP
36+
html5up.net | @ajlkn
37+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
38+
39+
40+
A big, modern, blocky affair with a mobile-style menu, fully responsive styling,
41+
and an assortment of pre-styled elements. So, pretty much what you were expecting
42+
-- except, of course, for how it's put together, specifically:
43+
44+
- It's built on Skel 3*, a leaner, more modular rewrite of my responsive framework.
45+
46+
(* = still in development as of this writing)
47+
48+
- It uses flexbox*, which eliminates all kinds of terrible hacks and clunky layout
49+
stopgaps (like CSS grid systems).
50+
51+
(* = not supported on IE8/9, but non-flexbox fallbacks are included)
52+
53+
- It uses Sass* a lot more intelligently, thanks in part to several new mixins
54+
and functions I've been working on (as well as a few by @HugoGiraudel).
55+
56+
(* = still entirely optional if you prefer vanilla CSS :)
57+
58+
- A ton of other stuff.
59+
60+
In short, Spectral's the culmination of several new things I'm working on/trying out,
61+
so please, let me know what you think :)
62+
63+
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
64+
you can use for pretty much whatever.
65+
66+
(* = not included)
67+
68+
AJ
69+
70+
71+
72+
Credits:
73+
74+
Demo Images:
75+
Unsplash (unsplash.com)
76+
77+
Icons:
78+
Font Awesome (fortawesome.github.com/Font-Awesome)
79+
80+
Other:
81+
jQuery (jquery.com)
82+
html5shiv.js (@afarkas @jdalton @jon_neal @rem)
83+
background-size polyfill (github.com/louisremi)
84+
Misc. Sass functions (@HugoGiraudel)
85+
Respond.js (j.mp/respondjs)
86+
Skel (skel.io)
87+
88+
```
89+
90+
Repository [Jekyll logo](https://github.com/jekyll/brand) icon licensed under a [Creative Commons Attribution 4.0 International License](http://choosealicense.com/licenses/cc-by-4.0/).

_config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Site settings
2+
title: Spectral
3+
4+
description: The Jekyll version of the Spectral theme by HTML5 UP.
5+
baseurl: "/spectral-jekyll-theme" # the subpath of your site, e.g. /blog
6+
url: "" # the base hostname & protocol for your site
7+
8+
# Homepage tiles
9+
tiles-source: posts # accepts "posts" or "pages"
10+
tiles-count: 3
11+
12+
# Misc settings
13+
featured-image-source:
14+
15+
# Social settings
16+
500px_url:
17+
facebook_url:
18+
github_url:
19+
gitlab_url: https://gitlab.com/u/andrewbanchich
20+
googleplus_url: https://plus.google.com/u/0/+AndrewBanchich
21+
instagram_url:
22+
linkedin_url: https://www.linkedin.com/in/andrew-banchich-a4ba1195
23+
pinterest_url:
24+
slack_url:
25+
twitter_url: https://twitter.com/andrewbanchich
26+
27+
# Build settings
28+
markdown: kramdown

_includes/banner.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Banner -->
2+
<section id="banner">
3+
<div class="inner">
4+
<h2>Spectral</h2>
5+
<p>Another fine responsive<br /> site template freebie<br /> crafted by <a href="http://html5up.net">HTML5 UP</a>.</p>
6+
<ul class="actions">
7+
<li><a href="#" class="button special">Activate</a></li>
8+
</ul>
9+
</div>
10+
<a href="#one" class="more scrolly">Learn More</a>
11+
</section>

0 commit comments

Comments
 (0)