Skip to content

Commit 94d2bc0

Browse files
committed
001
1 parent c6a0ad6 commit 94d2bc0

96 files changed

Lines changed: 12878 additions & 282 deletions

Some content is hidden

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

.DS_Store

0 Bytes
Binary file not shown.

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: https://paypal.me/raviriley
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
15+
**Expected behavior**
16+
A clear and concise description of what you expected to happen.
17+
18+
**Screenshots**
19+
If applicable, add screenshots to help explain your problem.
20+
21+
**Additional context**
22+
Add any other context about the problem here.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
### **Is your feature request related to a problem? Please describe.**
10+
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
### **Describe the solution you'd like**
14+
15+
A clear and concise description of what you want to happen.
16+
17+
### **Describe alternatives you've considered** <!-- optional -->
18+
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
### **Additional context** <!-- optional -->
22+
23+
Add any other context or screenshots about the feature request here.
24+
25+
<!-- If you have successfully implemented your requested feature on your own repository, open a pull request instead. -->

.github/ISSUE_TEMPLATE/support.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Support
3+
about: Having trouble with the theme?
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
<!--
10+
Before opening a new issue please:
11+
12+
- Verify you have the latest versions of Jekyll and Agency
13+
installed by running `bundle update`.
14+
- Search all issues at https://github.com/raviriley/agency-jekyll-theme/issues
15+
for solutions and to avoid duplication.
16+
17+
After exhausting these suggestions ask your question below.
18+
19+
NOTE: Please provide a code repository, gist, code snippet, sample files, or
20+
screenshots to triage your issue.
21+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
Choose one of the following by uncommenting it:
3+
-->
4+
5+
<!-- This is a bug fix. -->
6+
<!-- This is an enhancement or feature. -->
7+
<!-- This is a documentation change. -->
8+
9+
## Summary
10+
11+
<!--
12+
Provide a description of what your pull request changes.
13+
-->
14+
15+
## Context
16+
17+
<!--
18+
Is this related to any GitHub issue(s)?
19+
-->

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "bundler" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
2-
.github/.DS_Store
1+
*.gem
2+
.bundle
3+
.sass-cache
4+
.jekyll-cache
5+
_site
6+
Gemfile.lock
7+
unused
8+
bootstrap-reference.html

404.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: page
3+
title: Page Not Found
4+
background: grey
5+
---
6+
7+
<section class="page-section">
8+
<div class="container">
9+
<div class="row">
10+
<div class="col-lg-12 text-center">
11+
<h2 class="section-heading text-uppercase">404 - Page Not Found</h2>
12+
<h3 class="section-subheading text-muted">
13+
The requested page could not be found.
14+
</h3>
15+
</div>
16+
</div>
17+
</div>
18+
</section>

0 commit comments

Comments
 (0)