-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2194b3e
commit 7257197
Showing
35 changed files
with
295 additions
and
394 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,12 @@ | ||
# Created by https://www.toptal.com/developers/gitignore/api/jekyll,ruby | ||
# Edit at https://www.toptal.com/developers/gitignore?templates=jekyll,ruby | ||
|
||
### Jekyll ### | ||
# Local Site Directories | ||
_site/ | ||
.sass-cache/ | ||
.jekyll-cache/ | ||
.jekyll-metadata | ||
# Ignore folders generated by Bundler | ||
.bundle/ | ||
vendor/ | ||
|
||
### Ruby ### | ||
*.gem | ||
*.rbc | ||
/.config | ||
/coverage/ | ||
/InstalledFiles | ||
/pkg/ | ||
/spec/reports/ | ||
/spec/examples.txt | ||
/test/tmp/ | ||
/test/version_tmp/ | ||
/tmp/ | ||
|
||
# Used by dotenv library to load environment variables. | ||
# .env | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
|
||
## Specific to RubyMotion: | ||
.dat* | ||
.repl_history | ||
build/ | ||
*.bridgesupport | ||
build-iPhoneOS/ | ||
build-iPhoneSimulator/ | ||
|
||
## Specific to RubyMotion (use of CocoaPods): | ||
# | ||
# We recommend against adding the Pods directory to your .gitignore. However | ||
# you should judge for yourself, the pros and cons are mentioned at: | ||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control | ||
# vendor/Pods/ | ||
|
||
## Documentation cache and generated files: | ||
/.yardoc/ | ||
/_yardoc/ | ||
/doc/ | ||
/rdoc/ | ||
|
||
## Environment normalization: | ||
/.bundle/ | ||
/vendor/bundle | ||
/lib/bundler/man/ | ||
|
||
# for a library or gem, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# Gemfile.lock | ||
# .ruby-version | ||
# .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
|
||
# Used by RuboCop. Remote config files pulled in from inherit_from directive. | ||
# .rubocop-https?--* | ||
# Ruby Gems | ||
.bundle | ||
Gemfile.lock | ||
|
||
# End of https://www.toptal.com/developers/gitignore/api/jekyll,ruby | ||
# Log Files | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
# gem "rails" | ||
|
||
gem "jekyll", "~> 4.3" | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-sitemap" | ||
gem "jekyll-feed" | ||
gem "jekyll-seo-tag" | ||
end | ||
gem "github-pages", group: :jekyll_plugins | ||
gem 'wdm', '>= 0.1.0' if Gem.win_platform? |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,81 @@ | ||
### Site Settings ### | ||
title : EndlessJourney | ||
description : >- | ||
Immerse yourself in a horror/co-op game | ||
where each session is a unique experience. | ||
repository : X-R-G-B/EndlessJourney-public # Change to <your-username>/<your-username>.github.io (or remove it if you don't need remote projects) | ||
remote_theme : yousinix/portfolYOU@v2.3.0 | ||
open_new_tab : false # Opens external URLs in new tab (works for posts, projects and navbar only) | ||
|
||
|
||
### Plugins ### | ||
plugins: | ||
- jemoji | ||
|
||
|
||
### Navbar Settings ### | ||
nav_exclude: # The following paths are excluded from navbar | ||
- pages/tags.html | ||
- pages/404.html | ||
- pages/index.md | ||
|
||
|
||
### Author Info ### | ||
author: | ||
name : XLRGB | ||
image : https://avatars.githubusercontent.com/u/102259774 | ||
github : X-R-G-B | ||
# instagram : your_username | ||
# linkedin : your_username | ||
# medium : your_username | ||
# twitch : your_username | ||
# twitter : your_username | ||
# youtube : your_channel_name | ||
|
||
|
||
### Posts ### | ||
permalink: /blog/:title | ||
|
||
|
||
### Collections ### | ||
collections: | ||
authors: | ||
projects: | ||
output: true | ||
permalink: /projects/:name | ||
|
||
|
||
### Disqus ### | ||
disqus: | ||
shortname: your-short-name-disqus-does-not-exist # Your website Shortname on disqus | ||
|
||
|
||
### Analytics ### | ||
analytics: | ||
enabled: false # Set true to enable analytics | ||
|
||
|
||
### Buy me a coffee ### | ||
buymeacoffee: | ||
enabled: false | ||
|
||
|
||
### Defaults for collections ### | ||
defaults: | ||
- scope: | ||
path: "" | ||
type: "authors" | ||
type: "projects" | ||
values: | ||
layout: "author" | ||
layout: "page" | ||
- scope: | ||
path: "" | ||
type: "posts" | ||
values: | ||
layout: "post" | ||
- scope: | ||
path: "" | ||
values: | ||
layout: "default" | ||
comments: false # Set to true to enable disqus comments | ||
|
||
plugins: | ||
- jekyll-feed | ||
- jekyll-sitemap | ||
- jekyll-seo-tag | ||
|
||
### Exclude from processing ### | ||
exclude: | ||
- README.md | ||
- CONTRIBUTING.md | ||
- LICENSE | ||
- "*.log" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.