Skip to content

Commit ac2d87f

Browse files
committed
change theme
1 parent 8a3f086 commit ac2d87f

File tree

106 files changed

+153
-5718
lines changed

Some content is hidden

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

106 files changed

+153
-5718
lines changed

.DS_Store

6 KB
Binary file not shown.

.github/workflows/publish.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: deploy-book
2+
3+
on:
4+
# Trigger the workflow on push to main branch
5+
push:
6+
branches:
7+
- main
8+
9+
env:
10+
BASE_URL: /${{ github.event.repository.name }}
11+
12+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
13+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: false
17+
18+
jobs:
19+
deploy-book:
20+
runs-on: ubuntu-latest
21+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
22+
permissions:
23+
pages: write
24+
id-token: write
25+
steps:
26+
- uses: actions/checkout@v3
27+
28+
# Install dependencies
29+
- name: Set up Python 3.12
30+
uses: actions/setup-python@v4
31+
with:
32+
python-version: 3.12
33+
34+
- name: Install dependencies
35+
run: |
36+
pip install -r requirements.txt
37+
38+
# Build the book
39+
- name: Build the book
40+
run: |
41+
jb build docs --path-output ./ -nW --keep-going
42+
43+
# Upload the book's HTML as an artifact
44+
- name: Upload artifact
45+
uses: actions/upload-pages-artifact@v2
46+
with:
47+
path: "_build/html"
48+
49+
# Deploy the book's HTML to GitHub Pages
50+
- name: Deploy to GitHub Pages
51+
id: deployment
52+
uses: actions/deploy-pages@v2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_build/*

404.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

LICENSE.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,7 @@
1-
# Forty - Jekyll Theme
1+
# Personal Website
22

3-
A Jekyll version of the "Forty" theme by [HTML5 UP](https://html5up.net/).
4-
5-
![Forty Theme](assets/images/forty.jpg "Forty Theme")
6-
7-
# How to Use
8-
9-
For those unfamiliar with how Jekyll works, check out [jekyllrb.com](https://jekyllrb.com/) for all the details,
10-
or read up on just the basics of [front matter](https://jekyllrb.com/docs/frontmatter/), [writing posts](https://jekyllrb.com/docs/posts/),
11-
and [creating pages](https://jekyllrb.com/docs/pages/).
12-
13-
- **GitLab**: Simply fork this repository and start editing the `_config.yml` file!
14-
- **GitHub**: Fork this repository and create a branch named `gh-pages`, then start editing the `_config.yml` file.
15-
16-
# Added Features
17-
18-
* **[Formspree.io](https://formspree.io/) contact form integration** - just add your email to the `_config.yml` and it works!
19-
* Use `_config.yml` to **set whether the homepage tiles should pull pages or posts**, as well as how many to display.
20-
* Add your **social profiles** easily in `_config.yml`. Only social profiles buttons you enter in `config.yml` show up on the site footer!
21-
* Set **featured images** in front matter.
22-
23-
# Issues
24-
25-
If you would like to report a bug, ask a question, request a feature, feel free to do so on [the GitLab repository](https://gitlab.com/andrewbanchich/forty-jekyll-theme) and I will be more than happy to help!
26-
27-
Alternatively, you can open an issue via email by emailing [incoming+andrewbanchich/forty-jekyll-theme@incoming.gitlab.com](mailto:incoming+andrewbanchich/forty-jekyll-theme@incoming.gitlab.com).
28-
29-
The GitHub repository is simply a mirror of the GitLab repository.
30-
31-
# Credits
32-
33-
Original README from HTML5 UP:
3+
Use the following command to build
344

355
```
36-
Forty by HTML5 UP
37-
html5up.net | @ajlkn
38-
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
39-
40-
41-
This is Forty, my latest and greatest addition to HTML5 UP and, per its incredibly
42-
creative name, my 40th (woohoo)! It's built around a grid of "image tiles" that are
43-
set up to smoothly transition to secondary landing pages (for which a separate page
44-
template is provided), and includes a number of neat effects (check out the menu!),
45-
extra features, and all the usual stuff you'd expect. Hope you dig it!
46-
47-
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
48-
you can use for pretty much whatever.
49-
50-
(* = not included)
51-
52-
AJ
53-
aj@lkn.io | @ajlkn
54-
55-
56-
Credits:
57-
58-
Demo Images:
59-
Unsplash (unsplash.com)
60-
61-
Icons:
62-
Font Awesome (fortawesome.github.com/Font-Awesome)
63-
64-
Other:
65-
jQuery (jquery.com)
66-
html5shiv.js (@afarkas @jdalton @jon_neal @rem)
67-
background-size polyfill (github.com/louisremi)
68-
Misc. Sass functions (@HugoGiraudel)
69-
Respond.js (j.mp/respondjs)
70-
Skel (skel.io)
6+
jb build docs --path-output ./ -nW --keep-going
717
```
72-
73-
Repository [Jekyll logo](https://github.com/jekyll/brand) icon licensed under a [Creative Commons Attribution 4.0 International License](http://choosealicense.com/licenses/cc-by-4.0/).

_config.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

_includes/footer.html

Lines changed: 0 additions & 115 deletions
This file was deleted.

0 commit comments

Comments
 (0)