Skip to content

Commit e44be1e

Browse files
author
Michael McShinsky
committed
added source code to project. Changed notification to a one time modal on the home page based on simple vanilla js and localstorage
1 parent 7f9538c commit e44be1e

105 files changed

Lines changed: 3369 additions & 3 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎.editorconfig‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 2
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false

‎.gitignore‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.bundle
2+
.sass-cache
3+
Gemfile.lock
4+
_site
5+
*.gem

‎.travis.yml‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: ruby
2+
cache: bundler
3+
sudo: false
4+
rvm: 2.4
5+
6+
install: script/bootstrap
7+
script: script/cibuild

‎404.html‎

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
max-width: 600px;
8+
text-align: center;
9+
}
10+
h1 {
11+
margin: 30px 0;
12+
font-size: 4em;
13+
line-height: 1;
14+
letter-spacing: -1px;
15+
}
16+
</style>
17+
18+
<div class="container my-20 py-20 m-auto">
19+
<h1>404</h1>
20+
21+
<p><strong>Page not found :(</strong></p>
22+
<p class="mb-32">The requested page could not be found.</p>
23+
</div>

‎CODE_OF_CONDUCT.md‎

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at parkrmoore@gmail.com. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

‎Gemfile‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
gemspec

‎History.markdown‎

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
## HEAD
2+
3+
### Bug Fixes
4+
5+
* Footer overlapping issue (Support Microsoft Explorer 11) (#248)
6+
7+
## 2.5.0
8+
9+
### Bug Fixes
10+
11+
* Add `jekyll-feed` plugin in config (#228)
12+
13+
### Minor Enhancements
14+
15+
* Stick footer for short posts (#223)
16+
* Consolidate trigger SVG paths (#148)
17+
18+
## 2.4.1
19+
20+
### Bug Fixes
21+
22+
* Reintroduce removed social includes for backwards compatibility (#217)
23+
24+
## 2.4.0
25+
26+
### Minor Enhancements
27+
28+
* Add better system fonts (#205)
29+
* Remove whitespace due to Liquid tags in generated HTML (#202)
30+
* Adding Mastodon to the social networks (#198)
31+
32+
### Bug Fixes
33+
34+
* social icons should resolve baseurl properly (#201)
35+
* fix: styling main element in IE 11 (#199)
36+
37+
### Documentation
38+
39+
* Improve thw wording in index.md (#175)
40+
* Update config description comment (#203)
41+
42+
## 2.3.0
43+
44+
* Add option to show excerpts on the homepage (#90)
45+
* Handle RSS feed with jekyll-feed (#183)
46+
* Test build with Ruby 2.4 on CI (#184)
47+
* Document how to customize navigation links (#192)
48+
49+
## 2.2.1
50+
51+
* Revert social_sites hash for retrocompatibility (#190)
52+
53+
## 2.2.0
54+
55+
### Minor Enhancements
56+
57+
* handling content outside of posts (#88)
58+
* Add default table styles (#144)
59+
* Add `jekyll-seo-tag` dependency (#139)
60+
* Add Microformats markup (#160)
61+
* Add more social links (#141)
62+
63+
### Documentation
64+
65+
* Docs: clarification about page title (#142)
66+
67+
## 2.1.1 / 2017-04-13
68+
69+
### Minor Enhancements
70+
71+
* Close #55: Improve mobile user experience (#62)
72+
* Remove incomplete status from spec summary (#63)
73+
* Use date_format if set in configuration (#70)
74+
* Corrected misspelled word (#72)
75+
* Scale headings relative to base-font-size (#78)
76+
* Remove 2.0 post-install message (#82)
77+
* Fixes #115 - Only include the nav tag if there are pages to be displayed in the menu (#116)
78+
* Fixes #80, #106. Make the hamburger work with pure CSS. (#111)
79+
* add `header_pages` config to link only specific files in header (#52)
80+
* More easily customizable CSS (#117)
81+
* Use relative size for fonts and line-height (#103)
82+
* Add 404 page from jekyll `master` (#121)
83+
84+
### Development Fixes
85+
86+
* Remove duplicate .sass-cache (#71)
87+
* Demo minima on GitHub Pages (#76)
88+
* Remove the Rakefile (#118)
89+
90+
### Documentation
91+
92+
* Update README with theme content description (#91)
93+
* Update default local URL (#120)
94+
95+
## 2.1.0 / 2016-11-15
96+
97+
### Minor Enhancements
98+
99+
* Update gemspec to require at least Jekyll 3.3 (#59)
100+
* Use `absolute_url` filter for disqus (#66)
101+
* replace `example/index.html` with `example/index.md` (#58)
102+
103+
### Development Fixes
104+
105+
* Example should require Jekyll 3.3 (#61)
106+
107+
## 2.0.0 / 2016-10-06
108+
109+
### Minor Enhancements
110+
111+
* priority to site.url when site.github.url is available (#46)
112+
* Move contents of the index.html page to the 'home' layout (#48)
113+
* Use new `absolute_url` and `relative_url` filters in minima (#57)
114+
115+
### Development Fixes
116+
117+
* Use standardized tab size of 2 spaces (#44)
118+
119+
### Major Enhancements
120+
121+
* move `css/` directory from jekyll into `assets/` (#43)
122+
123+
### Bug Fixes
124+
125+
* Fix html proofer errors (#49)
126+
* Update gem regex to include new `assets` directory (#54)
127+
128+
## 1.2.0 / 2016-09-12
129+
130+
### Minor Enhancements
131+
132+
* Look to site.url when available (#35)
133+
134+
### Documentation
135+
136+
* Move instruction for CSS in install section (#37)
137+
138+
## 1.1.0 / 2016-09-07
139+
140+
### Major Enhancements
141+
142+
* Add support to Disqus (#21)
143+
* Google analytics support (#26)
144+
* Look for `site.github.url` if it exists (#25)
145+
146+
### Minor Enhancements
147+
148+
* Fixed Flash Of Unstyled SVG (#12)
149+
* Added "author" in footer instead of double title (#22)
150+
151+
### Documentation
152+
153+
* Document how to link to the theme styles (#18)
154+
* Update Example to resemble Default site (#24)
155+
156+
### Development Enhancements
157+
158+
* Use upstream gemspec file matcher (#9)
159+
* Fix gemspec regex (#31)
160+
* Add Travis and a basic smoke test (#33)
161+
162+
## 1.0.1 / 2016-07-28
163+
164+
* include `_layouts`, `_includes`, and `_sass` dir in gem (#6)
165+
166+
## 1.0.0 / 2016-07-27
167+
168+
* default layout: html `lang` attribute should allow user customization (#3)
169+
* Use `normalize_whitespace` filter for meta description (#4)
170+
* Fix repo's URL in contributing (#5)

‎LICENSE.txt‎

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016-present Parker Moore and the minima contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

‎README.md‎

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Welcome to Ravencoin's Codebase
2+
Current Build Status: ![Build Status](https://travis-ci.org/RavenProject/Ravencoin.svg?branch=master)
3+
Live site: [Ravencoin.org](https://ravencoin.org)
4+
Report problems or help improve the site by opening a [new issue](https://github.com/RavenProject/Ravencoin.org/issues/new) or [pull request](https://github.com/RavenProject/Ravencoin.org/compare).
5+
6+
## Earn Bitcoin for Contributing to the Core
7+
Open issues [labeled with "Bounty"](https://github.com/RavenProject/Ravencoin/labels/Bounty)
8+
have bounties on them. Viewing the issue will reveal the value of the bounty.
9+
Submit a pull request resolving the issue along with an accompanying note or
10+
comment containing a raven address and automatically receive a payment in the
11+
amount of the bounty if it gets merged.
12+
13+
## How to Participate
14+
Information coming soon.
15+
16+
### Code of Conduct
17+
Participation in this project is subject to a [Code of Conduct](https://github.com/RavenProject/Ravencoin.org/blob/master/CODE_OF_CONDUCT.md).
18+
19+
### Donations
20+
Ravencoin.org is community supported: [RLAAfXwoQGdRvqupMrrL7j57gzfHFqCxca](raven:RLAAfXwoQGdRvqupMrrL7j57gzfHFqCxca)
21+
22+
### Questions?
23+
Please contact Will Binns ([will@Ravencoin.org](mailto:will@ravencoin.org)) if you need help.
24+
25+
### Todo List
26+
The following are on the Ravencoin.org agenda.
27+
+ Integrate multiple languages and language templating.
28+
+ Refine overall templating and css structures.
29+
+ Convert minima theme css to Tailwind framework and dynamically build tailwind resources.
30+
+ Remove any lingering legacy/irrelevant data.
31+
+ Build web/paper wallet.
32+
+ Add and source press releases.
33+
+ Create resource pages for contributors and participants.
34+
+ Get "Get Started" instructional page.
35+
+ Create donation modal.
36+
+ Create mining resources page.

0 commit comments

Comments
 (0)