Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Abridge theme. #13

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "themes/dose"]
path = themes/dose
url = https://github.com/oltdaniel/dose.git
[submodule "themes/abridge"]
path = themes/abridge
url = https://github.com/jieiku/abridge.git
349 changes: 330 additions & 19 deletions config.toml

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
+++
paginate_by = 3
sort_by = "date"
template = "index.html"
+++
6 changes: 6 additions & 0 deletions content/archive/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
template = "archive.html"

[extra]
sec = ""
+++
5 changes: 5 additions & 0 deletions content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
paginate_by = 3
sort_by = "date"
template = "index.html"
+++
10 changes: 10 additions & 0 deletions content/blog/hello-blog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "Starting my blog"
date = 2024-01-08
updated = 2024-01-08
description = "the first blogpost"
[taxonomies]
tags = ["hello-world", "zola"]
+++

My main problem with learning about computers is that I never got to *really* tell anyone about it
8 changes: 2 additions & 6 deletions content/hello-blog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
+++
title = "Starting my blog"
title = "Welcome!"
date = 2024-01-08
updated = 2024-01-08
description = "the first blogpost"
[taxonomies]
tags = ["hello-world", "zola"]
description = "Home page"
+++

My main problem with learning about computers is that I never got to *really* tell anyone about it
3 changes: 3 additions & 0 deletions content/images/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
render = false
+++
3 changes: 3 additions & 0 deletions content/pages/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
render = false
+++
12 changes: 12 additions & 0 deletions content/pages/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
+++
title = "About"
path = "about"
template = "pages.html"
draft = false
+++

This site is makde by Balázs Róbert Börcsök as a portfolio and public blog.

It contains the author's personal view and opinion, which is not to be associated by represnted institutions or companies.

This site provides uses the [abridge theme](https://github.com/Jieiku/abridge) for [Zola](https://www.getzola.org/) the static site generator.
10 changes: 10 additions & 0 deletions content/pages/contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "Contact"
description = "To reach me please use the contact form on this page."
path = "contact"
template = "pages.html"
draft = false
+++

- Contact Me [via email](mailto:[email protected]) for professional requests.
- Or click on the icons below for other social platforms.
10 changes: 10 additions & 0 deletions content/pages/offline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "Offline Mode"
path = "offline"
template = "pages.html"
draft = false
+++

## Offline Mode

Sorry, no cache found and it looks like you’re offline, a connection is required.
14 changes: 14 additions & 0 deletions content/pages/privacy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
+++
title = "Privacy Policy"
description = "This page outlines the Privacy Policy for this site, and the date at which this policy was put into affect."
path = "privacy"
template = "pages.html"
draft = false
+++

## Privacy

- This site is hosted on GitHub Pages, please see the [privacy policy for it](https://docs.github.com/en/site-policy/privacy-policies/github-privacy-statement).
- Otherwise the site does not explicitly collect any information.

**Effective Date:** _8st Jan 2024_
5 changes: 5 additions & 0 deletions content/static/stork_toml.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
path = "data_stork"
template = "stork_toml.html"
draft = true
+++
5 changes: 5 additions & 0 deletions content/static/tinysearch_json.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
path = "data_tinysearch"
template = "tinysearch_json.html"
draft = true
+++
17 changes: 17 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "abridge-bundle",
"version": "2.0.0",
"description": "Abridge - set PWA cache files list, bundle and minify js",
"author": "Jake G <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Jieiku/abridge",
"scripts": {
"abridge": "node -e \"if ( require('fs').existsSync('./themes/abridge/package_abridge.js')) {require('fs').copyFileSync('./themes/abridge/package_abridge.js', './package_abridge.js')}\" && node package_abridge.js"
},
"dependencies": {
"fast-toml": "^0.5.4",
"uglify-js": "^3.17.4",
"jsonminify": "^0.4.2",
"replace-in-file": "^7.0.1"
}
}
Loading