Skip to content

Commit 55d4472

Browse files
committed
Add GitHub Pages Theme to v0.3.1
1 parent e31a63d commit 55d4472

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

Gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6+
7+
# gem "rails"
8+
9+
gem "jekyll", "~> 3.8"
10+
gem "github-pages"

_config.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
baseurl: /php-solid-pubsub-server
3+
description: Standalone Solid PubSub Server written in PHP by PDS Interop
4+
repository: pdsinterop/php-solid-pubsub-server
5+
title: Standalone PHP Solid PubSub server
6+
url: https://pdsinterop.org
7+
8+
permalink: pretty
9+
remote_theme: Potherca/[email protected]
10+
11+
exclude:
12+
- "src/"
13+
- "tests/"
14+
- "vendor/"
15+
- "Gemfile"
16+
- "*.json"
17+
- "*.lock"
18+
19+
plugins:
20+
- github-pages
21+
- jekyll-github-metadata
22+
- jekyll-remote-theme
23+
- jekyll-seo-tag
24+
25+
# Extend the Docs settings (see https://pother.ca/extend-the-docs/)
26+
nav:
27+
cross_repository:
28+
exclude:
29+
- jekyll-theme
30+
- pdsinterop.github.io
31+
show_archived: true
32+
show_homepage: false
33+
exclude:
34+
- /
35+
- /404.html
36+
favicon_ico : /favicon.ico
37+
main_title:
38+
link: '/'
39+
recurse: true
40+
41+
# Just the Docs settings (see https://pmarsceill.github.io/just-the-docs/docs/configuration/)
42+
aux_links:
43+
"PDS Interop on GitHub":
44+
- https://github.com/pdsinterop
45+
footer_content: '<p xmlns:dct="http://purl.org/dc/terms/" property="dct:rights">Copyright © <span property="dct:dateCopyrighted">2020-2021</span> <span property="dct:publisher">PDS Interop</span>. Distributed under a <a rel="license" href="https://pdsinterop.org/license/">MIT license</a>.</p>'
46+
gh_edit_link: true
47+
gh_edit_repository: https://github.com/pdsinterop/php-solid-pubsub-server
48+
logo: https://avatars3.githubusercontent.com/u/65920341
49+
search_enabled: true

0 commit comments

Comments
 (0)