Skip to content

Commit d6c8bb0

Browse files
committed
changed config to identify diff themes and exclude certain files
1 parent b7ded97 commit d6c8bb0

2 files changed

Lines changed: 53 additions & 4 deletions

File tree

_config.yml

Lines changed: 52 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,59 @@
1-
theme: jekyll-theme-minimal
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
#
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
222
title: Birds Open Source Project
323
description: The BIRDS program, developed by Kyushu Institute of Technology, is an educational initiative focused on CubeSat development. The BIRDS Open Source project is committed to demonstrating lean satellite development that is well documented, easy to adapt and debug, and that caters to the needs of the entire satellite development workflow, from satellite design configurations to ground station data collection and analysis.
424
logo: ./assets/images/logo_2018_07.png
525
show_downloads: false
6-
url: "/"
26+
baseurl: "/" # the subpath of your site, e.g. /blog
27+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
28+
email: null
29+
keep_files: ['/docs', 'docs']
730

31+
32+
# Build settings
33+
theme: jekyll-theme-minimal
834
plugins:
935
- jekyll-sitemap
10-
- jekyll-seo-tag
36+
- jekyll-seo-tag
37+
38+
# Exclude from processing.
39+
# The following items will not be processed, by default.
40+
# Any item listed under the `exclude:` key here will be automatically added to
41+
# the internal "default list".
42+
#
43+
# Excluded items can be processed by explicitly listing the directories or
44+
# their entries' file path in the `include:` list.
45+
#
46+
exclude:
47+
- docs
48+
- build_theme_sites.sh
49+
- Gemfile
50+
- Gemfile.lock
51+
- LICENSE
52+
# - .sass-cache/
53+
# - .jekyll-cache/
54+
# - gemfiles/
55+
# - node_modules/
56+
# - vendor/bundle/
57+
# - vendor/cache/
58+
# - vendor/gems/
59+
# - vendor/ruby/

_data/themes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- name: minima
1+
- name: jekyll-theme-minimal
22
url: ./
33
- name: just-the-docs
44
url: ./docs

0 commit comments

Comments
 (0)