Skip to content

Commit 48290e7

Browse files
Add files via upload
1 parent 5d027d2 commit 48290e7

File tree

9 files changed

+135
-1
lines changed

9 files changed

+135
-1
lines changed

404.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "404"
3+
excerpt: "Page Not Found"
4+
permalink: 404.html
5+
indexing: false
6+
sitemap: false
7+
---
8+
9+
Sorry, but the page could not be found.

Gemfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source "https://rubygems.org"
2+
3+
gem "jekyll", "~> 4.1"
4+
gem "jekyll-sitemap", "~> 1.4.0"
5+
gem "jekyll-mentions", "~> 1.6.0"
6+
gem "jekyll-paginate", "~> 1.1.0"
7+
gem "jekyll-seo-tag", "~> 2.6.1"
8+
gem "jekyll-redirect-from", "~> 0.16"
9+
gem "jekyll-feed", "~> 0.15"
10+
gem "jekyll-commonmark", "~> 1.3.1"
11+
gem "jekyll-include-cache", "~> 0.2"
12+
gem "jemoji", "~> 0.12"
13+
gem "jekyll-remote-theme", "~> 0.3"

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
# PowershellScripts.github.io
1+
# Starter kit for [Alembic](https://alembic.darn.es/)
2+
3+
This is a very simple starting point if you wish to use Alembic [as a Jekyll theme gem](https://alembic.darn.es/#as-a-jekyll-theme) or as a [GitHub Pages remote theme](https://github.com/daviddarnes/alembic-kit/tree/remote-theme) (see `remote-theme` branch).
4+
5+
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/daviddarnes/alembic-kit)
6+
7+
or
8+
9+
**[Download the GitHub Pages kit](https://github.com/daviddarnes/alembic-kit/archive/remote-theme.zip)**

_config.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Set theme
2+
remote_theme: daviddarnes/alembic@main
3+
4+
# File excludes
5+
exclude:
6+
- README.md
7+
- Gemfile
8+
- Gemfile.lock
9+
10+
# Set plugins
11+
plugins:
12+
- jekyll-sitemap
13+
- jekyll-mentions
14+
- jekyll-paginate
15+
- jekyll-seo-tag
16+
- jekyll-redirect-from
17+
- jekyll-feed
18+
- jekyll-commonmark
19+
- jekyll-include-cache
20+
- jemoji
21+
- jekyll-remote-theme
22+
23+
# Site settings
24+
url: 'https://mydomain.com'
25+
baseurl: ''
26+
title: 'My website'
27+
description: 'This is my new website'
28+
permalink: pretty
29+
logo: "https://www.gravatar.com/avatar/6c0377abcf4da91cdd35dea4554b2a4c?s=52"
30+
31+
# Pagination
32+
paginate: 5
33+
paginate_path: blog/page:num
34+
35+
# Header nav
36+
navigation_header:
37+
- title: Home
38+
url: /
39+
- title: About
40+
url: /about/
41+
- title: Blog
42+
url: /blog/
43+
44+
# Footer nav
45+
navigation_footer:
46+
- title: Back to top
47+
url: "#top"
48+
49+
# Collections
50+
collections:
51+
posts:
52+
title: Posts
53+
output: true
54+
description: "My thoughts and ideas"
55+
feature_text: |
56+
Welcome to my blog
57+
feature_image: "https://picsum.photos/2560/600?image=866"
58+
59+
# Collection settings
60+
defaults:
61+
-
62+
scope:
63+
path: ""
64+
type: "posts"
65+
values:
66+
layout: post # Set the default layout for posts
67+
-
68+
scope:
69+
path: ""
70+
type: "pages"
71+
values:
72+
layout: page # Set the default layout for pages

_posts/2018-08-22-hello-world.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Hello World
3+
categories:
4+
- General
5+
feature_image: "https://picsum.photos/2560/600?image=872"
6+
---
7+
8+
This is my very first blog post. I haven't written anything yet but I'm sure I have some great stories to tell.

about.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: About this website
3+
---
4+
5+
I'm not sure yet what this website is about, but I'm sure I'll work it out soon.

blog/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: blog
3+
collectionpage: posts
4+
title: Blog
5+
---

categories.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: Categories
3+
layout: categories
4+
excerpt: "Category index"
5+
aside: true
6+
---

index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Welcome to my website
3+
feature_image: "https://picsum.photos/1300/400?image=989"
4+
feature_text: |
5+
## Hello world
6+
---
7+
8+
There isn't much going on here yet, but watch this space

0 commit comments

Comments
 (0)