Skip to content

Commit 42f0bf8

Browse files
committed
update config files
1 parent bfe62c9 commit 42f0bf8

File tree

4 files changed

+186
-43
lines changed

4 files changed

+186
-43
lines changed

.gitignore

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
1-
_site/
1+
### Jekyll ###
2+
_site
3+
.sass-cache
4+
.jekyll-metadata
5+
Gemfile.lock
6+
.bundle
7+
_config.local.yml
28

9+
10+
### Gulp ###
11+
package.json
12+
/node_modules/
13+
14+
15+
### Atom ###
16+
.ftpconfig
17+
.sftpconfig
18+
19+
20+
### Logs and Databases ###
21+
*.log
22+
*.sql
23+
*.sqlite
24+
25+
26+
### Linux ###
27+
*~
28+
29+
30+
### MacOS ###
31+
*.DS_Store
32+
._*

Gemfile

+47-36
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,55 @@
1-
source "https://rubygems.org"
1+
source 'https://rubygems.org'
22
ruby RUBY_VERSION
3+
# Gemfile is used by `bundler` package manger to ensure dependencies are met
34

4-
# Hello!
5-
#
6-
# After cloning HacknightsLBC locally, you need to setup your local environment.
7-
# Do this to insure your local gems (and versions) match what's on Github
8-
# To setup (or update) your environment to match Github, do this:
9-
#
10-
# bundle install
11-
#
12-
# This will help ensure the proper Jekyll version is running.
13-
#
14-
# To serve the site for local testing, do this:
5+
# This is where you manage which Jekyll version is used to run.
6+
# When you want to use a different version, change it below, save the
7+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
158
#
169
# bundle exec jekyll serve
1710
#
18-
#
19-
#
20-
# Additional Notes
21-
# =====
22-
# Because HacknightsLBC is hosted on Github, it requires the github-pages gem
23-
# Github does not support any other jekyll plugins.
24-
#
25-
# To find out what plugins are included in github-pages, that you can use
26-
# in the _config.yml file, visit:
27-
# https://pages.github.com/versions/
28-
#
29-
#
30-
# To Use the Optional Development Gems, do this:
31-
#
32-
# bundle install --with development
33-
#
34-
# Happy Jekylling!
11+
# This will help ensure the proper Jekyll version is running.
12+
# Happy Jekylling!
13+
# gem 'jekyll', '3.2.1'
14+
15+
16+
# Add gems to jekyll_plugins group
17+
# Use github-pages gem to ensure local development mirrors Github pages.
18+
# Github-pages: https://github.com/github/pages-gem
19+
# List of gems included: https://pages.github.com/versions/
20+
#
21+
# To use any of these gems, be sure to add to `_config.yml`
22+
# For example, `jekyll-sitemap` is enabled by default.
23+
gem 'github-pages', group: :jekyll_plugins
24+
25+
26+
# Add gems to development group
27+
# A few suggested gems for local development or when not using github pages
28+
# To use, uncomment, then run `bundle install [--with=GROUP[ GROUP...]]`
29+
# --with=<list> is A space-separated list of groups referencing gems to
30+
# install. If an optional group is given it is installed. If a group is
31+
# given that is in the remembered list of groups given to --without, it
32+
# is removed from that list.
33+
#
34+
# Example: bundle install --with development
35+
#gem 'jekyll-admin', require: false, group: :development
36+
gem 'bootstrap-sass', require: false, group: :development
37+
# Add to older version of sass to development group to ensure its available when
38+
# generating sourcemaps using compass 1.0.3 (:bug: with 3.5.x branch)
39+
# see `assets/style.scss` for details
40+
gem 'sass', '~> 3.4.25', group: :development
41+
42+
# Add gems to travis group
43+
# About Travis CI: http://jekyllrb.com/docs/continuous-integration/
44+
#gem 'html-proofer', group: :travis
45+
#gem 'scss_lint', require: false, group: :travis
3546

36-
gem "github-pages", group: :jekyll_plugins
47+
# If you have any plugins, put them here!
48+
group :jekyll_plugins do
49+
end
3750

38-
group :jekyll_plugins do
39-
end
51+
group :travis do
52+
end
4053

41-
group :development, optional: true do
42-
gem 'jekyll-admin', require: false
43-
gem 'editorconfig', require: false
44-
end
54+
group :development, optional: true do
55+
end

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1-
# Welcome To Hack Night LB!
2-
We are a local Long Beach Tech meetup aspiring to connect the best minds of long beach with other great minds and the minds that need their services. Come join us every Wednesday for a chance to network and learn.
3-
TODO Make tutorial on how to create your own profile webpage here on Github.
1+
---
2+
layout: default
3+
---
4+
5+
# Read Me
6+
7+
This is a Jekyll template for :octocat: Github pages based on the Bootstrap Framework ([Official Sass version](https://github.com/twbs/bootstrap-sass)). It also utilizes practices from the Jekyll default theme `minima`.
8+
9+
## Details
10+
11+
See [Demo with Instructions](https://mdrmike.github.io/jekyll-theme-gh-bootstrap/).
12+
13+
## Bugs and Issues
14+
15+
Find a bug or have a suggestion? [Open a new issue]({{ site.github.issues_url }}) on GitHub.
16+
17+
18+
## Copyright and License
19+
20+
Copyright 2017 Michael Stewart. Theme code released under the [MIT License]({{ site.github.repository_url }}/LICENSE). Bootstrap [MIT License](https://github.com/twbs/bootstrap-sass/blob/master/LICENSE).

_config.yml

+88-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,88 @@
1-
title: Hack Night
2-
permalink: /:year/:month/:day/:title/
3-
paginate: 5
1+
# Welcome to Jekyll!
2+
# Documentation: https://jekyllrb.com/docs/configuration/
3+
# defaults: https://jekyllrb.com/docs/configuration/#default-configuration
4+
#
5+
# This file is *NOT* reloaded automatically when you use 'bundle exec jekyll serve'.
6+
7+
# Site settings
8+
# These are used to personalize your new site. If you look in the HTML files,
9+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
10+
# You can create any custom variable you would like, and they will be accessible
11+
# in the templates via {{ site.myvariable }}.
12+
title: Hack Night LBC
13+
14+
description: > # this means to ignore newlines until "baseurl:"
15+
We are a local Long Beach Tech meetup aspiring to connect the best minds of long beach with other great minds and the minds that need their services. Come join us every Wednesday for a chance to network and learn.
16+
TODO Make tutorial on how to create your own profile webpage here on Github.
17+
baseurl: "" # the subpath of your site, e.g. /blog # dont think it is needed as profile page?
18+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
19+
twitter_username: hacknightlbc
20+
github_username: hacknightlbc
21+
22+
## SITE NAVIGATION
23+
# By default, all pages in your site are added to navigation.
24+
# If you want to link only specific pages or posts in your header, uncomment
25+
# this and add the path to the pages in order as they should show up
26+
# Note: Any values are overridden by _data/header_pages.yml
27+
#header_pages:
28+
# - about.md
29+
30+
31+
# Build settings
32+
# ██████ ██ ██ ██ ██ ██████ ███████ ███████ ████████ ████████ ██ ███ ██ ██████ ███████
33+
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██ ██
34+
# ██████ ██ ██ ██ ██ ██ ██ ███████ █████ ██ ██ ██ ██ ██ ██ ██ ███ ███████
35+
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
36+
# ██████ ██████ ██ ███████ ██████ ███████ ███████ ██ ██ ██ ██ ████ ██████ ███████
37+
38+
# Github-pages list of gems https://pages.github.com/versions/
39+
gems:
40+
- jekyll-feed # SEO generate an Atom (RSS-like) feed of your Jekyll posts — https://github.com/jekyll/jekyll-feed
41+
# - jekyll-redirect-from # SEO 301 redirects — https://github.com/jekyll/jekyll-redirect-from
42+
# - jekyll-seo-tag # SEO add metadata tags for search & social networks — https://github.com/jekyll/jekyll-seo-tag
43+
# - jekyll-sitemap # SEO Generate a sitemaps.org compliant sitemap — https://github.com/jekyll/jekyll-sitemap
44+
# - jekyll-paginate # Jekyll Built-in Pagination Generator for Jekyll
45+
# - jekyll-readme-index # Jekyll Render a project's README as the site's index — https://github.com/benbalter/jekyll-readme-index/
46+
# - jekyll-avatar # Liquid rendering GitHub avatars — https://github.com/benbalter/jekyll-avatar/
47+
# - jekyll-gist # Liquid Liquid tag for displaying GitHub Gists — https://github.com/jekyll/jekyll-gist/
48+
# - jekyll-mentions # GFM @mention support for your Jekyll site — https://github.com/jekyll/jekyll-mentions
49+
# - jekyll-relative-links # GFM convert relative links to markdown files to their rendered equivalents — https://github.com/benbalter/jekyll-relative-links/
50+
- jemoji # GFM GitHub-flavored Emoji plugin for Jekyll — https://github.com/jekyll/jemoji
51+
# - jekyll-titles-from-headings # Generate page title from the first Markdown heading when none is specified — https://github.com/benbalter/jekyll-titles-from-headings
52+
#
53+
# Won't work on github pages, and will need to be added to Gemfile
54+
# - jekyll-admin # Provides a traditional CMS-style graphical interface to author and administer Jekyll — Docs: https://github.com/jekyll/jekyll-admin
55+
# - jekyll-bootstrap-sass # Docs: http://www.rubydoc.info/gems/jekyll-bootstrap-sass/0.1.0
56+
# - bootstrap-sass # Docs: http://www.rubydoc.info/gems/bootstrap-sass
57+
#
58+
# Jekyll-pages requires the following Gems by default.
59+
# Therefore, read the docs if you want to change default configurations.
60+
# - jekyll-coffeescript # https://github.com/jekyll/jekyll-coffeescript
61+
# - jekyll-default-layout # https://github.com/benbalter/jekyll-default-layout
62+
# - jekyll-gist # https://github.com/jekyll/jekyll-gist
63+
# - jekyll-github-metadata # https://github.com/jekyll/github-metadata
64+
# - jekyll-optional-front-matter # https://github.com/benbalter/jekyll-optional-front-matter
65+
# - jekyll-paginate # https://github.com/jekyll/jekyll-paginate
66+
# - jekyll-readme-index # https://github.com/benbalter/jekyll-readme-index
67+
# - jekyll-relative-links # https://github.com/benbalter/jekyll-relative-links
68+
# - jekyll-titles-from-headings # https://github.com/benbalter/jekyll-titles-from-headings
69+
70+
liquid:
71+
error_mode: strict #warn #lax
72+
markdown: kramdown
73+
74+
exclude:
75+
- Gemfile
76+
- Gemfile.lock
77+
- node_modules
78+
- vendor/
79+
80+
# Github Metadata (github-pages)
81+
# Docs https://github.com/jekyll/github-metadata
82+
repository: hacknightlbc/hacknightlbc.github.io # username/repo-name
83+
84+
# Jekyll Sass Converter: https://github.com/jekyll/jekyll-sass-converter/
85+
# Docs: https://jekyllrb.com/docs/assets/#sassscss
86+
sass:
87+
sass_dir: assets/_sass_imports
88+
style: compressed #nested expanded compact compressed

0 commit comments

Comments
 (0)