-
-
-## Lighthouse PageSpeed Insights
-
-[](https://pagespeed.web.dev/report?url=https%3A%2F%2Falshedivat.github.io%2Fal-folio%2F&form_factor=desktop)
-
-
-## Table Of Contents
-
- * [User community](#user-community)
- * [Lighthouse PageSpeed Insights](#lighthouse-pagespeed-insights)
- * [Getting started](#getting-started)
- + [Installation](#installation)
- - [Local setup using Docker (Recommended on Windows)](#local-setup-using-docker-recommended-on-windows)
- - [Local Setup (Standard)](#local-setup-standard)
- - [Deployment](#deployment)
- - [Upgrading from a previous version](#upgrading-from-a-previous-version)
- + [FAQ](#faq)
- * [Features](#features)
- + [Publications](#publications)
- + [Collections](#collections)
- + [Layouts](#layouts)
- - [The iconic style of Distill](#the-iconic-style-of-distill)
- - [Full support for math & code](#full-support-for-math--code)
- - [Photos](#photos)
- + [Other features](#other-features)
- - [GitHub repositories and user stats](#github-repositories-and-user-stats)
- - [Theming](#theming)
- - [Social media previews](#social-media-previews)
- - [Atom (RSS-like) Feed](#atom-rss-like-feed)
- * [Contributing](#contributing)
- + [Core Contributors](#core-contributors)
- * [License](#license)
-
-## Getting started
-
-Want to learn more about Jekyll? Check out [this tutorial](https://www.taniarascia.com/make-a-static-website-with-jekyll/).
-Why Jekyll? Read [Andrej Karpathy's blog post](https://karpathy.github.io/2014/07/01/switching-to-jekyll/)!
-
-
-### Installation
-
-For a hands-on walkthrough of al-folio installation, check out [this cool video tutorial](https://www.youtube.com/watch?v=g6AJ9qPPoyc) by one of the community members! 🎬 🍿
-
----
-
-#### Local setup using Docker (Recommended on Windows)
-
-You need to take the following steps to get `al-folio` up and running in your local machine:
-
-- First, [install docker](https://docs.docker.com/get-docker/)
-- Then, clone this repository to your machine:
-
-```bash
-$ git clone git@github.com:/.git
-$ cd
-```
-
-Finally, run the following command that will pull a pre-built image from DockerHub and will run your website.
-
-```bash
-$ ./bin/dockerhub_run.sh
-```
-
-Note that when you run it for the first time, it will download a docker image of size 300MB or so.
-
-Now, feel free to customize the theme however you like (don't forget to change the name!). After you are done, you can use the same command (`bin/dockerhub_run.sh`) to render the webpage with all you changes. Also, make sure to commit your final changes.
-
-(click to expand) Build your own docker image (more advanced):
-
-> Note: this approach is only necessary if you would like to build an older or very custom version of al-folio.
-
-First, download the necessary modules and install them into a docker image called `al-folio:Dockerfile` (this command will build an image which is used to run your website afterwards. Note that you only need to do this step once. After you have the image, you no longer need to do this anymore):
-
-
-```bash
-$ ./bin/docker_build_image.sh
-```
-
-Run the website!
-
-```bash
-$ ./bin/docker_run.sh
-```
-
-> To change port number, you can edit `docker_run.sh` file.
-
-> If you want to update jekyll, install new ruby packages, etc., all you have to do is build the image again using `docker_build_image.sh`! It will download ruby and jekyll and install all ruby packages again from scratch.
-
-
-
----
-
-#### Local Setup (Standard)
-
-Assuming you have [Ruby](https://www.ruby-lang.org/en/downloads/) and [Bundler](https://bundler.io/) installed on your system (*hint: for ease of managing ruby gems, consider using [rbenv](https://github.com/rbenv/rbenv)*), first [fork](https://guides.github.com/activities/forking/) the theme from `github.com:alshedivat/al-folio` to `github.com:/` and do the following:
-
-```bash
-$ git clone git@github.com:/.git
-$ cd
-$ bundle install
-$ bundle exec jekyll serve
-```
-
-Now, feel free to customize the theme however you like (don't forget to change the name!).
-After you are done, **commit** your final changes.
-
----
-
-#### Deployment
-
-Deploying your website to [GitHub Pages](https://pages.github.com/) is the most popular option.
-Starting version [v0.3.5](https://github.com/alshedivat/al-folio/releases/tag/v0.3.5), **al-folio** will automatically re-deploy your webpage each time you push new changes to your repository! :sparkles:
-
-**For personal and organization webpages:**
-1. Rename your repository to `.github.io` or `.github.io`.
-2. In `_config.yml`, set `url` to `https://.github.io` and leave `baseurl` empty.
-3. Set up automatic deployment of your webpage (see instructions below).
-4. Make changes, commit, and push!
-5. After deployment, the webpage will become available at `.github.io`.
-
-**For project pages:**
-1. In `_config.yml`, set `url` to `https://.github.io` and `baseurl` to `//`.
-2. Set up automatic deployment of your webpage (see instructions below).
-3. Make changes, commit, and push!
-4. After deployment, the webpage will become available at `.github.io//`.
-
-**To enable automatic deployment:**
-1. Click on **Actions** tab and **Enable GitHub Actions**; do not worry about creating any workflows as everything has already been set for you.
-2. Make any other changes to your webpage, commit, and push. This will automatically trigger the **Deploy** action.
-3. Wait for a few minutes and let the action complete. You can see the progress in the **Actions** tab. If completed successfully, in addition to the `master` branch, your repository should now have a newly built `gh-pages` branch.
-4. Finally, in the **Settings** of your repository, in the Pages section, set the branch to `gh-pages` (**NOT** to `master`). For more details, see [Configuring a publishing source for your GitHub Pages site](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#choosing-a-publishing-source).
-
-
-(click to expand) Manual deployment to GitHub Pages:
-
-If you need to manually re-deploy your website to GitHub pages, run the deploy script from the root directory of your repository:
-```bash
-$ ./bin/deploy
-```
-uses the `master` branch for the source code and deploys the webpage to `gh-pages`.
-
-
-
-(click to expand) Deployment to another hosting server (non GitHub Pages):
-
-If you decide to not use GitHub Pages and host your page elsewhere, simply run:
-```bash
-$ bundle exec jekyll build
-```
-which will (re-)generate the static webpage in the `_site/` folder.
-Then simply copy the contents of the `_site/` foder to your hosting server.
-
-**Note:** Make sure to correctly set the `url` and `baseurl` fields in `_config.yml` before building the webpage. If you are deploying your webpage to `your-domain.com/your-project/`, you must set `url: your-domain.com` and `baseurl: /your-project/`. If you are deploing directly to `your-domain.com`, leave `baseurl` blank.
-
-
-
-(click to expand) Deployment to a separate repository (advanced users only):
-
-**Note:** Do not try using this method unless you know what you are doing (make sure you are familiar with [publishing sources](https://help.github.com/en/github/working-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites)). This approach allows to have the website's source code in one repository and the deployment version in a different repository.
-
-Let's assume that your website's publishing source is a `publishing-source` sub-directory of a git-versioned repository cloned under `$HOME/repo/`.
-For a user site this could well be something like `$HOME/.github.io`.
-
-Firstly, from the deployment repo dir, checkout the git branch hosting your publishing source.
-
-Then from the website sources dir (commonly your al-folio fork's clone):
-```bash
-$ bundle exec jekyll build --destination $HOME/repo/publishing-source
-```
-
-This will instruct jekyll to deploy the website under `$HOME/repo/publishing-source`.
-
-**Note:** Jekyll will clean `$HOME/repo/publishing-source` before building!
-
-The quote below is taken directly from the [jekyll configuration docs](https://jekyllrb.com/docs/configuration/options/):
-
-> Destination folders are cleaned on site builds
->
-> The contents of `` are automatically cleaned, by default, when the site is built. Files or folders that are not created by your site will be removed. Some files could be retained by specifying them within the `` configuration directive.
->
-> Do not use an important location for ``; instead, use it as a staging area and copy files from there to your web server.
-
-If `$HOME/repo/publishing-source` contains files that you want jekyll to leave untouched, specify them under `keep_files` in `_config.yml`.
-In its default configuration, al-folio will copy the top-level `README.md` to the publishing source. If you want to change this behaviour, add `README.md` under `exclude` in `_config.yml`.
-
-**Note:** Do _not_ run `jekyll clean` on your publishing source repo as this will result in the entire directory getting deleted, irrespective of the content of `keep_files` in `_config.yml`.
-
-
-
----
-
-#### Upgrading from a previous version
-
-If you installed **al-folio** as described above, you can upgrade to the latest version as follows:
-
-```bash
-# Assuming the current directory is
-$ git remote add upstream https://github.com/alshedivat/al-folio.git
-$ git fetch upstream
-$ git rebase v0.3.5
-```
-
-If you have extensively customized a previous version, it might be trickier to upgrade.
-You can still follow the steps above, but `git rebase` may result in merge conflicts that must be resolved.
-See [git rebase manual](https://help.github.com/en/github/using-git/about-git-rebase) and how to [resolve conflicts](https://help.github.com/en/github/using-git/resolving-merge-conflicts-after-a-git-rebase) for more information.
-If rebasing is too complicated, we recommend to re-install the new version of the theme from scratch and port over your content and changes from the previous version manually.
-
----
-
-### FAQ
-
-Here are some frequently asked questions.
-If you have a different question, please ask using [Discussions](https://github.com/alshedivat/al-folio/discussions/categories/q-a).
-
-1. **Q:** After I fork and setup the repo, I get a deployment error.
- Isn't the website supposed to correctly deploy automatically?
- **A:** Yes, if you are using release `v0.3.5` or later, the website will automatically and correctly re-deploy right after your first commit.
- Please make some changes (e.g., change your website info in `_config.yml`), commit, and push.
- Make sure to follow [deployment instructions](https://github.com/alshedivat/al-folio#deployment) in the previous section.
- (Relevant issue: [209](https://github.com/alshedivat/al-folio/issues/209#issuecomment-798849211).)
-
-2. **Q:** I am using a custom domain (e.g., `foo.com`).
- My custom domain becomes blank in the repository settings after each deployment.
- How do I fix that?
- **A:** You need to add `CNAME` file to the `master` or `source` branch of your repository.
- The file should contain your custom domain name.
- (Relevant issue: [130](https://github.com/alshedivat/al-folio/issues/130).)
-
-3. **Q:** My webpage works locally.
- But after deploying, it is not displayed correctly (CSS and JS is not loaded properly).
- How do I fix that?
- **A:** Make sure to correctly specify the `url` and `baseurl` paths in `_config.yml`.
- Set `url` to `https://.github.io` or to `https://` if you are using a custom domain.
- If you are deploying a personal or organization website, leave `baseurl` blank.
- If you are deploying a project page, set `baseurl: //`.
-
-4. **Q:** Atom feed doesn't work. Why?
-
- **A:** Make sure to correctly specify the `url` and `baseurl` paths in `_config.yml`.
- RSS Feed plugin works with these correctly set up fields: `title`, `url`, `description` and `author`.
- Make sure to fill them in an appropriate way and try again.
-
-
-## Features
-
-### Publications
-
-Your publications page is generated automatically from your BibTex bibliography.
-Simply edit `_bibliography/papers.bib`.
-You can also add new `*.bib` files and customize the look of your publications however you like by editing `_pages/publications.md`.
-
-
-
-(click to expand) Author annotation:
-
-In publications, the author entry for yourself is identified by string array `scholar:last_name` and string array `scholar:first_name` in `_config.yml`:
-```
-scholar:
- last_name: [Einstein]
- first_name: [Albert, A.]
-```
-If the entry matches one form of the last names and the first names, it will be underlined.
-Keep meta-information about your co-authors in `_data/coauthors.yml` and Jekyll will insert links to their webpages automatically.
-The coauthor data format in `_data/coauthors.yml` is as follows,
-```
-"Adams":
- - firstname: ["Edwin", "E.", "E. P.", "Edwin Plimpton"]
- url: https://en.wikipedia.org/wiki/Edwin_Plimpton_Adams
-
-"Podolsky":
- - firstname: ["Boris", "B.", "B. Y.", "Boris Yakovlevich"]
- url: https://en.wikipedia.org/wiki/Boris_Podolsky
-
-"Rosen":
- - firstname: ["Nathan", "N."]
- url: https://en.wikipedia.org/wiki/Nathan_Rosen
-
-"Bach":
- - firstname: ["Johann Sebastian", "J. S."]
- url: https://en.wikipedia.org/wiki/Johann_Sebastian_Bach
-
- - firstname: ["Carl Philipp Emanuel", "C. P. E."]
- url: https://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bach
-```
-If the entry matches one of the combinations of the last names and the first names, it will be highlighted and linked to the url provided.
-
-
-
-(click to expand) Buttons (through custom bibtex keywords):
-
-There are several custom bibtex keywords that you can use to affect how the entries are displayed on the webpage:
-
-- `abbr`: Adds an abbreviation to the left of the entry. You can add links to these by creating a venue.yaml-file in the _data folder and adding entries that match.
-- `abstract`: Adds an "Abs" button that expands a hidden text field when clicked to show the abstract text
-- `arxiv`: Adds a link to the Arxiv website (Note: only add the arxiv identifier here - the link is generated automatically)
-- `bibtex_show`: Adds a "Bib" button that expands a hidden text field with the full bibliography entry
-- `html`: Inserts a "HTML" button redirecting to the user-specified link
-- `pdf`: Adds a "PDF" button redirecting to a specified file (if a full link is not specified, the file will be assumed to be placed in the /assets/pdf/ directory)
-- `supp`: Adds a "Supp" button to a specified file (if a full link is not specified, the file will be assumed to be placed in the /assets/pdf/ directory)
-- `blog`: Adds a "Blog" button redirecting to the specified link
-- `code`: Adds a "Code" button redirecting to the specified link
-- `poster`: Adds a "Poster" button redirecting to a specified file (if a full link is not specified, the file will be assumed to be placed in the /assets/pdf/ directory)
-- `slides`: Adds a "Slides" button redirecting to a specified file (if a full link is not specified, the file will be assumed to be placed in the /assets/pdf/ directory)
-- `website`: Adds a "Website" button redirecting to the specified link
-
-You can implement your own buttons by editing the bib.html file.
-
-
-
----
-
-### Collections
-
-This Jekyll theme implements `collections` to let you break up your work into categories.
-The theme comes with two default collections: `news` and `projects`.
-Items from the `news` collection are automatically displayed on the home page.
-Items from the `projects` collection are displayed on a responsive grid on projects page.
-
-
-
-You can easily create your own collections, apps, short stories, courses, or whatever your creative work is.
-To do this, edit the collections in the `_config.yml` file, create a corresponding folder, and create a landing page for your collection, similar to `_pages/projects.md`.
-
----
-
-### Layouts
-
-**al-folio** comes with stylish layouts for pages and blog posts.
-
-#### The iconic style of Distill
-
-The theme allows you to create blog posts in the [distill.pub](https://distill.pub/) style:
-
-
-
-For more details on how to create distill-styled posts using `` tags, please refer to [the example](https://alshedivat.github.io/al-folio/blog/2018/distill/).
-
-#### Full support for math & code
-
-**al-folio** supports fast math typesetting through [MathJax](https://www.mathjax.org/) and code syntax highlighting using [GitHub style](https://github.com/jwarby/jekyll-pygments-themes):
-
-
-
-
-
-
-#### Photos
-
-Photo formatting is made simple using [Bootstrap's grid system](https://getbootstrap.com/docs/4.4/layout/grid/).
-Easily create beautiful grids within your blog posts and project pages:
-
-
-
----
-
-### Other features
-
-#### GitHub repositories and user stats
-**al-folio** uses [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) to display GitHub repositories and user stats on the the `/repositories/` page.
-
-Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories to the the `/repositories/` page.
-
-You may also use the following codes for displaying this in any other pages.
-```
-
-{% if site.data.repositories.github_users %}
-
- {% for user in site.data.repositories.github_users %}
- {% include repository/repo_user.html username=user %}
- {% endfor %}
-
-{% endif %}
-
-
-{% if site.data.repositories.github_repos %}
-
- {% for repo in site.data.repositories.github_repos %}
- {% include repository/repo.html repository=repo %}
- {% endfor %}
-
-{% endif %}
-```
-
-#### Theming
-A variety of beautiful theme colors have been selected for you to choose from.
-The default is purple, but you can quickly change it by editing the
-`--global-theme-color` variable in the `_sass/_themes.scss` file.
-Other color variables are listed there as well.
-The stock theme color options available can be found at `_sass/variables.scss`.
-You can also add your own colors to this file assigning each a name for ease of
-use across the template.
-
-#### Social media previews
-**al-folio** supports preview images on social media.
-To enable this functionality you will need to set `serve_og_meta` to `true` in your `_config.yml`.
-Once you have done so, all your site's pages will include Open Graph data in the HTML head element.
-
-You will then need to configure what image to display in your site's social media previews.
-This can be configured on a per-page basis, by setting the `og_image` page variable.
-If for an individual page this variable is not set, then the theme will fall back to a site-wide `og_image` variable, configurable in your `_config.yml`.
-In both the page-specific and site-wide cases, the `og_image` variable needs to hold the URL for the image you wish to display in social media previews.
-
-#### Atom (RSS-like) Feed
-It generates an Atom (RSS-like) feed of your posts, useful for Atom and RSS readers.
-The feed is reachable simply by typing after your homepage `/feed.xml`.
-E.g. assuming your website mountpoint is the main folder, you can type `yourusername.github.io/feed.xml`
-
-## Contributing
-
-Contributions to al-folio are very welcome!
-Before you get started, please take a look at [the guidelines](CONTRIBUTING.md).
-
-If you would like to improve documentation, add your webpage to the list below, or fix a minor inconsistency or bug, please feel free to send a PR directly to `master`.
-For more complex issues/bugs or feature requests, please open an issue using the appropriate template.
-
-### Maintainers
-
-
-
-
-
-
-
-
-
-
-
-## License
-
-The theme is available as open source under the terms of the [MIT License](https://github.com/alshedivat/al-folio/blob/master/LICENSE).
-
-Originally, **al-folio** was based on the [\*folio theme](https://github.com/bogoli/-folio) (published by [Lia Bogoev](https://liabogoev.com) and under the MIT license).
-Since then, it got a full re-write of the styles and many additional cool features.
+## LICENSE
+[./LICENSE](./LICENSE)
diff --git a/_posts/2022-12-28-gloria-js.md b/_posts/2022-12-28-gloria-js.md
deleted file mode 100644
index 87782db..0000000
--- a/_posts/2022-12-28-gloria-js.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-layout: post
-title: GloriaJS - simple framework for static websites
-date: 2022-12-28 00:04:20
-description: create simple static websites, open source & free hosting
-og_image: assets/img/posts/gloria.png
----
-
-I got very frustrated with ruby one day and decided to make my own static website generator, like how hard can it be? read the indicatedd folders for files, decide which layout to use to wrap the content, output in another folder and deploy to github pages.
-
-Gloriav1 worked out of the box 6+ years later after the first commit, tho node has changed a lot and my old code wasn't great. I hadn't figure out a few things back then and decided to take some shortcuts to keep releasing. Even had somme folks send pull requests and add features, pretty neat.
-
-So here we are again, v2 released yesterday or something, and it doesn't output websites yet, but it works really well, and soon this website would migrate to it, probably using the migration tool I'll be writing over the weekend or some time in the future. This time around will focus on tailwind only, is very fast to learn and use, the compile is much smarter this time, so it would be easy for anyone to create developers for other tools compatible with postcss or whatever i end frankisteining.
-
-This time around every step is independent, so that they can be more decoupled and evolve on their own direction. The actual command execution, and the event listeners for [yargs](http://yargs.js.org/) are in separate files now also.
-
-The program does something like:
-- **collect**
-- **extract**
-- **prebuild**
-- **build**
-- **output**
-- **deploy**
-
-Every step is pretty self explanatory I guess, or read the source code, hoping to keep every step customizable by allowing to monkey patch operations and the ability to add plugins. In order for it to keep working tho, the API must be backwards compatible and all that, that's why this time around the installation is local to the project, easier to ignore the whims of the developer if you can lock to a version.
-
-We'll see what happens, kisses.
-
-[website](https://gloria.js.org/)
-
-[github](https://github.com/gloriajs/gloria)
diff --git a/layouts/tailwind/blog.layout.md b/layouts/tailwind/blog.layout.md
new file mode 100644
index 0000000..d6da1a8
--- /dev/null
+++ b/layouts/tailwind/blog.layout.md
@@ -0,0 +1,24 @@
+---
+name: blog
+---
+
+
+
+ {{page.title}} | Daveed's Blog
+
+
+
+
+
+
+
+
diff --git a/pages/blog.md b/pages/blog.md
new file mode 100644
index 0000000..8f3c829
--- /dev/null
+++ b/pages/blog.md
@@ -0,0 +1,17 @@
+---
+name: Blog
+title: Blog | Daveed
+description: Thoughts and stories
+layout: full
+permalink: '/blog'
+---
+
+## Blog Posts
+
+{{#blog_posts files}}
+ [{{item.attrs.title}}](/{{destination}})
+{{/blog_posts}}
+
+### Footer
+
+[Home](/)
diff --git a/pages/index.md b/pages/index.md
new file mode 100644
index 0000000..86197f1
--- /dev/null
+++ b/pages/index.md
@@ -0,0 +1,11 @@
+---
+name: Daveed
+title: Daveed - Home
+description: Personal website
+layout: full
+permalink: '/'
+---
+
+## Links
+
+[Blog](/blog)
diff --git a/_posts/2022-10-20-launch.md b/posts/2022-10-20-launch.md
similarity index 98%
rename from _posts/2022-10-20-launch.md
rename to posts/2022-10-20-launch.md
index 13c011a..6cbd8f7 100644
--- a/_posts/2022-10-20-launch.md
+++ b/posts/2022-10-20-launch.md
@@ -1,5 +1,6 @@
---
-layout: post
+layout: blog
+type: post
title: New look in our website
date: 2022-10-20 08:08:00
description: Uninteresting blog post to announce something inconsequential
diff --git a/_posts/2022-10-24-society-kills.md b/posts/2022-10-24-society-kills.md
similarity index 99%
rename from _posts/2022-10-24-society-kills.md
rename to posts/2022-10-24-society-kills.md
index e87df73..a96dbd9 100644
--- a/_posts/2022-10-24-society-kills.md
+++ b/posts/2022-10-24-society-kills.md
@@ -1,5 +1,6 @@
---
-layout: post
+layout: blog
+type: post
title: tw suicide - people don't kill themselves, society kills them
date: 2022-10-24 10:24:00
description: 'trigger warning: suicide. Sharing some of my personal experiences in the hope it can be helpful to other people and their friends'
diff --git a/_posts/2022-11-12-become-a-healer.md b/posts/2022-11-12-become-a-healer.md
similarity index 99%
rename from _posts/2022-11-12-become-a-healer.md
rename to posts/2022-11-12-become-a-healer.md
index e275775..a3b947a 100644
--- a/_posts/2022-11-12-become-a-healer.md
+++ b/posts/2022-11-12-become-a-healer.md
@@ -1,5 +1,6 @@
---
-layout: post
+layout: blog
+type: post
title: Becoming a healer in a community
date: 2022-11-12 09:36:00
description: There's healing potential in a community that anyone can use to heal themselves and others around them
diff --git a/_posts/2022-11-12-prejudice.md b/posts/2022-11-12-prejudice.md
similarity index 98%
rename from _posts/2022-11-12-prejudice.md
rename to posts/2022-11-12-prejudice.md
index 3b268ad..90547cd 100644
--- a/_posts/2022-11-12-prejudice.md
+++ b/posts/2022-11-12-prejudice.md
@@ -1,5 +1,6 @@
---
-layout: post
+layout: blog
+type: post
title: How to live without prejudice, from Alejandro Jodorowsky
date: 2022-11-12 08:36:00
description: Excerpt from an answer by Jodorowsky where he offers actionable advice to get rid of prejudice and live enlightened
diff --git a/_posts/2022-12-05-santo-cabron.md b/posts/2022-12-05-santo-cabron.md
similarity index 79%
rename from _posts/2022-12-05-santo-cabron.md
rename to posts/2022-12-05-santo-cabron.md
index b13257e..dc2e6ba 100644
--- a/_posts/2022-12-05-santo-cabron.md
+++ b/posts/2022-12-05-santo-cabron.md
@@ -1,9 +1,10 @@
---
-layout: post
+layout: blog
+type: post
title: Santo Cabron
date: 2022-12-05 09:20:00
description: Creating a latinx artists collective
-og_image: assets/img/posts/santo_cabron_team.jpg
+og_image: /images/posts/santo_cabron_team.jpg
---
Dec 3 2022 we hosted an event at the Copacabana in Manhattan to launch a new art collective.
@@ -14,4 +15,4 @@ We invited a variety of artists to present their art and were blown away by the
The venue loved the event, and we'll be there, stay tuned for upcoming dates, and our schedule for LoveBurn 2023.
-
+
diff --git a/_posts/2022-12-25-superproductivity.md b/posts/2022-12-25-superproductivity.md
similarity index 97%
rename from _posts/2022-12-25-superproductivity.md
rename to posts/2022-12-25-superproductivity.md
index 63ab5d0..9b59ead 100644
--- a/_posts/2022-12-25-superproductivity.md
+++ b/posts/2022-12-25-superproductivity.md
@@ -1,9 +1,10 @@
---
-layout: post
+layout: blog
+type: post
title: Super Productivity tips
date: 2022-12-25 00:04:20
description: do more by sleeping more
-og_image: assets/img/posts/rayogram.jpeg
+og_image: /images/posts/rayogram.jpeg
---
**Happy holidays 2022! Hannukah 5783! 🪬 Now that many are planning their upcoming year I wanted to share some of my easiest productivity tips.**
@@ -62,6 +63,6 @@ Create a personal system where you organize your tasks in a way that doesn't bec
Is easier to get closer to what you want by creating a system and focusing your goals in activities and not in output. For example by phrasing your goal as "write 10 minutes every day" you will be succeding at it daily vs setting a goal as "write a book", and the book is more likely to be completed.
-
+
Make a system that provides you with the things that you need instead of trying to adapt yourself to someone elses's guidance.
diff --git a/_posts/2022-12-27-ourspace.md b/posts/2022-12-27-ourspace.md
similarity index 95%
rename from _posts/2022-12-27-ourspace.md
rename to posts/2022-12-27-ourspace.md
index 87798c4..a6fbeb6 100644
--- a/_posts/2022-12-27-ourspace.md
+++ b/posts/2022-12-27-ourspace.md
@@ -1,9 +1,10 @@
---
-layout: post
+layout: blog
+type: post
title: hashtag OurSpace - decentralized social network
date: 2022-12-27 04:20:09
description: a decentralized replacement to myspace
-og_image: assets/img/posts/tom.jpeg
+og_image: /images/posts/tom.jpeg
---
**Happy holidays 2022! Hannukah 5783! 🪬 Now that many are planning their upcoming year I wanted to propose a new decentralized social network [#ourspace](https://twitter.com/hashtag/ourspace).**
@@ -33,6 +34,6 @@ I'll start my friend's list:
## Friends
* [Tom](https://twitter.com/tomfromspace)
-
+
**Labels are helpful for our mental map of the world but they don’t actually define what they reference**
diff --git a/posts/2022-12-28-gloria-js.md b/posts/2022-12-28-gloria-js.md
new file mode 100644
index 0000000..e7cfc82
--- /dev/null
+++ b/posts/2022-12-28-gloria-js.md
@@ -0,0 +1,53 @@
+---
+layout: blog
+type: post
+title: GloriaJS - simple framework for static websites
+date: 2022-12-28 00:04:20
+description: create simple static websites, open source & free hosting
+og_image: /images/posts/gloria.png
+---
+
+I got very frustrated with ruby one day and decided to make my own static
+website generator, like how hard can it be? read the indicatedd folders for
+files, decide which layout to use to wrap the content, output in another folder
+and deploy to github pages.
+
+Gloriav1 worked out of the box 6+ years later after the first commit, tho node
+has changed a lot and my old code wasn't great. I hadn't figure out a few things
+back then and decided to take some shortcuts to keep releasing. Even had somme
+folks send pull requests and add features, pretty neat.
+
+So here we are again, v2 released yesterday or something, and it doesn't output
+websites yet, but it works really well, and soon this website would migrate to
+it, probably using the migration tool I'll be writing over the weekend or some
+time in the future. This time around will focus on tailwind only, is very fast
+to learn and use, the compile is much smarter this time, so it would be easy for
+anyone to create developers for other tools compatible with postcss or whatever
+i end frankisteining.
+
+This time around every step is independent, so that they can be more decoupled
+and evolve on their own direction. The actual command execution, and the event
+listeners for [yargs](http://yargs.js.org/) are in separate files now also.
+
+The program does something like:
+- **collect**
+- **extract**
+- **prebuild**
+- **build**
+- **output**
+- **deploy**
+
+Every step is pretty self explanatory I guess, or read the source code, hoping
+to keep every step customizable by allowing to monkey patch operations and the
+ability to add plugins. In order for it to keep working tho, the API must be
+backwards compatible and all that, that's why this time around the installation
+is local to the project, easier to ignore the whims of the developer if you can
+lock to a version.
+
+We'll see what happens, kisses.
+
+[website](https://gloria.js.org/)
+
+[github](https://github.com/gloriajs/gloria)
+
+This website is now built with GloriaJS.
diff --git a/_posts/2023-01-10-decomodify-wellbeing.md b/posts/2023-01-10-decomodify-wellbeing.md
similarity index 86%
rename from _posts/2023-01-10-decomodify-wellbeing.md
rename to posts/2023-01-10-decomodify-wellbeing.md
index 708cabe..a0fcdf0 100644
--- a/_posts/2023-01-10-decomodify-wellbeing.md
+++ b/posts/2023-01-10-decomodify-wellbeing.md
@@ -1,15 +1,21 @@
---
-layout: post
+layout: blog
+type: post
title: decomodify wellbeing
date: 2023-01-10 07:20:00
description: wellbeing is not something you can buy
-og_image: assets/img/posts/chopra.jpg
+og_image: /images/posts/chopra.jpg
---
-While is very encouraging to see more people talking about their wellbeing, particularly mental health, it still bothers me significantly how there's so many people trying to take advantage of it for profit. This is not a new concern; when Deepak Chopra visited Colombia in 2006, we had the chance to be on the organizing team and see behind the scenes of the wellness industry and its disregard for wellbeing.
+While is very encouraging to see more people talking about their wellbeing,
+particularly mental health, it still bothers me significantly how there's so
+many people trying to take advantage of it for profit. This is not a new
+concern; when Deepak Chopra visited Colombia in 2006, we had the chance to be on
+the organizing team and see behind the scenes of the wellness industry and its
+disregard for wellbeing.
-
+
Today we see several startups taking advantage of this, [pushing pills](https://www.msn.com/en-us/health/medical/scary-easy-sketchy-as-hell-how-startups-are-pushing-adderall-on-tiktok/ar-AA11dWDm) on people, selling overpriced subscriptions, trying to gate keep substances and force price increases, while at the same time forcing people into alienation, loneliness, debt and constant cycles of suffering that trap individuals in a vicious circle that is difficult to escape. Somehow we know that [consultants are creating marketing pitches to kill thousands of people with opioids](https://www.consulting.ca/news/2551/mckinsey-faces-class-action-lawsuit-for-alleged-role-in-opioid-crisis-in-canada) and yet, people keep trusting them and the other initiatives they promote. None of them go to prison or face any consequence, all the power of the state must be used to invent a war on drugs to uphold white supremacy and the [racists values](https://www.gatewayfoundation.org/addiction-blog/racism-war-on-drugs/) that allow capitalism to exist. The iran-contra scandal is well known, and I hope more information is also revealed on the ways the Colombian narco government and the USA worked together to control the cocaine market.
diff --git a/_posts/2023-01-17-secret-of-kabalah.md b/posts/2023-01-17-secret-of-kabalah.md
similarity index 50%
rename from _posts/2023-01-17-secret-of-kabalah.md
rename to posts/2023-01-17-secret-of-kabalah.md
index 2028c00..6dea9d8 100644
--- a/_posts/2023-01-17-secret-of-kabalah.md
+++ b/posts/2023-01-17-secret-of-kabalah.md
@@ -1,11 +1,13 @@
---
-layout: post
+layout: blog
+type: post
title: The secrets of Kabbalah
date: 2023-01-17 12:42:42
description: the key to unlocking permanent flow state and unlocking your intuition
-og_image: assets/img/posts/santocabron3x3.png
+og_image: /images/posts/santocabron3x3.png
---
-Pirke Abot asks whose wise? and the answer is the key to understanding the secrets of the universe. Follow the clues and be more intentional.
+Pirke Abot asks whose wise? and the answer is the key to understanding the
+secrets of the universe. Follow the clues and be more intentional.
-
+
diff --git a/_posts/2023-03-13-cdd.md b/posts/2023-03-13-cdd.md
similarity index 94%
rename from _posts/2023-03-13-cdd.md
rename to posts/2023-03-13-cdd.md
index 16e9ea6..ca500d3 100644
--- a/_posts/2023-03-13-cdd.md
+++ b/posts/2023-03-13-cdd.md
@@ -1,9 +1,10 @@
---
-layout: post
+layout: blog
+type: post
title: A framework for sustainable communities
date: 2023-01-17 12:42:42
description: Create startups as a community
-og_image: /assets/img/posts/cdd.png
+og_image: /images/posts/cdd.png
---
# Community driven development
@@ -32,7 +33,7 @@ The goal is to instill a sense that the community already exists and the members
Potential members of the community and investors feel more involved and ready to collaborate in the difficult journey. Others might quietly follow along, waiting for a particular update to increase their involvement, while still feeling part of the community.
-
+
> did you know that I'm not a famous [stock photo model](https://jopwellcollection.jopwell.com/jopwell_latinxcollection/p/MjkwODc5MTY5Ng==-MzM1NDQxNTc3Ng/)?
diff --git a/_posts/2023-04-03-cabronera.md b/posts/2023-04-03-cabronera.md
similarity index 83%
rename from _posts/2023-04-03-cabronera.md
rename to posts/2023-04-03-cabronera.md
index 0654090..d169a46 100644
--- a/_posts/2023-04-03-cabronera.md
+++ b/posts/2023-04-03-cabronera.md
@@ -1,15 +1,16 @@
---
-layout: post
-title: Cabronera
+layout: blog
+type: post
+title: Cabronera
date: 2023-04-03 12:42:42
-description:
+description:
---
# Cabronera
-Desigining a stage structure that packs well and can be transported, build and break down easily for multiple burning man events around the country.
+Desigining a stage structure that packs well and can be transported, build and break down easily for multiple burning man events around the country.
-The design builds on years of experience of structures in the desert, and other high risk regions. It uses lightweight material, easy to acquire and replace, easy to prepackage and install.
+The design builds on years of experience of structures in the desert, and other high risk regions. It uses lightweight material, easy to acquire and replace, easy to prepackage and install.
**Introduction**
diff --git a/_posts/2023-04-24-encuentra.md b/posts/2023-04-24-encuentra.md
similarity index 99%
rename from _posts/2023-04-24-encuentra.md
rename to posts/2023-04-24-encuentra.md
index 431ab87..e1a761f 100644
--- a/_posts/2023-04-24-encuentra.md
+++ b/posts/2023-04-24-encuentra.md
@@ -1,5 +1,6 @@
---
-layout: post
+layout: blog
+type: post
title: Encuentra tu voz leadership workshop
date: 2023-04-20 12:42:42
description: This coaching methodology includes practices of logotherapy and bilingual storytelling by professional artists that can help you find your unique mission in life and express it through poetry to craft a cohesive leadership style and the confidence to inspire others
diff --git a/_posts/2023-06-02-burning-stones.md b/posts/2023-06-02-burning-stones.md
similarity index 73%
rename from _posts/2023-06-02-burning-stones.md
rename to posts/2023-06-02-burning-stones.md
index fac3230..b4debb8 100644
--- a/_posts/2023-06-02-burning-stones.md
+++ b/posts/2023-06-02-burning-stones.md
@@ -1,14 +1,15 @@
---
-layout: post
+layout: blog
+type: post
title: Burning Stones at Disorient Country Club
date: 2023-06-02 12:42:42
description: Excited to announce the opening of our dive bar at the disorient country club
-og_image: /assets/img/posts/burningstones.png
+og_image: /images/posts/burningstones.png
---
# Burning Stones at disorient country club
-
+
Growing up I loved my country club, our family would go to the Club San Fernando in Cali, Colombia, and we had friends who were members of others and it was a common weekend tradition to hang out by the pool and get in trouble.
@@ -16,4 +17,4 @@ Last year I met the amazing team at Disorient, and their country club, and was h
This is our little secret, when you find yourself in the catskills, look for the country club and the secret burning stones bar in the forest.
-
+
diff --git a/_posts/2023-06-06-nyerismo-callejerismo.md b/posts/2023-06-06-nyerismo-callejerismo.md
similarity index 73%
rename from _posts/2023-06-06-nyerismo-callejerismo.md
rename to posts/2023-06-06-nyerismo-callejerismo.md
index 8abfc37..e447fbe 100644
--- a/_posts/2023-06-06-nyerismo-callejerismo.md
+++ b/posts/2023-06-06-nyerismo-callejerismo.md
@@ -1,9 +1,10 @@
---
-layout: post
+layout: blog
+type: post
title: Callejera, el arte marcial colombiano y su historia.
date: 2023-06-06 12:12:42
description: Introduction to Colombian martial arts and rankings
-og_image: /assets/img/posts/callejera.png
+og_image: /images/posts/callejera.png
---
**También conocida como ñerismo.**
@@ -34,4 +35,4 @@ Our logo depicts a bunny because it is from the wilderness and the constant awe
La asociacion caleña para la promocion y la defensa de la cultura que promueve la callejera saludable, segura y con condom, con abreviatura: ACPDCPCSSC o a ce pe de ce pe ce ese ese ce para más corto.
-
+
diff --git a/_posts/2023-09-10-santo-cabron-brc-23.md b/posts/2023-09-10-santo-cabron-brc-23.md
similarity index 92%
rename from _posts/2023-09-10-santo-cabron-brc-23.md
rename to posts/2023-09-10-santo-cabron-brc-23.md
index ed1d276..4893641 100644
--- a/_posts/2023-09-10-santo-cabron-brc-23.md
+++ b/posts/2023-09-10-santo-cabron-brc-23.md
@@ -1,9 +1,10 @@
---
-layout: post
+layout: blog
+type: post
title: Santo Cabrón at Black Rock City 2023
date: 2023-09-10 04:20:15
description: Tales of a mythical creature visiting BRC
-og_image: /assets/img/posts/santo-cabron-kitchen.JPG
+og_image: /images/posts/santo-cabron-kitchen.JPG
---
## Intro
@@ -78,7 +79,7 @@ Here’s some of the places and services we used.
- nyc burners used the nyc container camp to get their things delivered on playa
-
+
## Get involved
diff --git a/assets/img/1.jpg b/public/images/img/1.jpg
similarity index 100%
rename from assets/img/1.jpg
rename to public/images/img/1.jpg
diff --git a/assets/img/10.jpg b/public/images/img/10.jpg
similarity index 100%
rename from assets/img/10.jpg
rename to public/images/img/10.jpg
diff --git a/assets/img/11.jpg b/public/images/img/11.jpg
similarity index 100%
rename from assets/img/11.jpg
rename to public/images/img/11.jpg
diff --git a/assets/img/12.jpg b/public/images/img/12.jpg
similarity index 100%
rename from assets/img/12.jpg
rename to public/images/img/12.jpg
diff --git a/assets/img/2.jpg b/public/images/img/2.jpg
similarity index 100%
rename from assets/img/2.jpg
rename to public/images/img/2.jpg
diff --git a/assets/img/3.jpg b/public/images/img/3.jpg
similarity index 100%
rename from assets/img/3.jpg
rename to public/images/img/3.jpg
diff --git a/assets/img/4.jpg b/public/images/img/4.jpg
similarity index 100%
rename from assets/img/4.jpg
rename to public/images/img/4.jpg
diff --git a/assets/img/5.jpg b/public/images/img/5.jpg
similarity index 100%
rename from assets/img/5.jpg
rename to public/images/img/5.jpg
diff --git a/assets/img/6.jpg b/public/images/img/6.jpg
similarity index 100%
rename from assets/img/6.jpg
rename to public/images/img/6.jpg
diff --git a/assets/img/7.jpg b/public/images/img/7.jpg
similarity index 100%
rename from assets/img/7.jpg
rename to public/images/img/7.jpg
diff --git a/assets/img/8.jpg b/public/images/img/8.jpg
similarity index 100%
rename from assets/img/8.jpg
rename to public/images/img/8.jpg
diff --git a/assets/img/9.jpg b/public/images/img/9.jpg
similarity index 100%
rename from assets/img/9.jpg
rename to public/images/img/9.jpg
diff --git a/assets/img/al-folio-preview.png b/public/images/img/al-folio-preview.png
similarity index 100%
rename from assets/img/al-folio-preview.png
rename to public/images/img/al-folio-preview.png
diff --git a/assets/img/code-screenshot.png b/public/images/img/code-screenshot.png
similarity index 100%
rename from assets/img/code-screenshot.png
rename to public/images/img/code-screenshot.png
diff --git a/assets/img/david.jpg b/public/images/img/david.jpg
similarity index 100%
rename from assets/img/david.jpg
rename to public/images/img/david.jpg
diff --git a/assets/img/distill-screenshot.png b/public/images/img/distill-screenshot.png
similarity index 100%
rename from assets/img/distill-screenshot.png
rename to public/images/img/distill-screenshot.png
diff --git a/assets/img/king-david-the-second-logo.png b/public/images/img/king-david-the-second-logo.png
similarity index 100%
rename from assets/img/king-david-the-second-logo.png
rename to public/images/img/king-david-the-second-logo.png
diff --git a/assets/img/math-screenshot.png b/public/images/img/math-screenshot.png
similarity index 100%
rename from assets/img/math-screenshot.png
rename to public/images/img/math-screenshot.png
diff --git a/assets/img/pa/logo.gif b/public/images/img/pa/logo.gif
similarity index 100%
rename from assets/img/pa/logo.gif
rename to public/images/img/pa/logo.gif
diff --git a/assets/img/pagespeed.svg b/public/images/img/pagespeed.svg
similarity index 100%
rename from assets/img/pagespeed.svg
rename to public/images/img/pagespeed.svg
diff --git a/assets/img/photos-screenshot.png b/public/images/img/photos-screenshot.png
similarity index 100%
rename from assets/img/photos-screenshot.png
rename to public/images/img/photos-screenshot.png
diff --git a/assets/img/posts/burningstones.png b/public/images/img/posts/burningstones.png
similarity index 100%
rename from assets/img/posts/burningstones.png
rename to public/images/img/posts/burningstones.png
diff --git a/assets/img/posts/callejera.png b/public/images/img/posts/callejera.png
similarity index 100%
rename from assets/img/posts/callejera.png
rename to public/images/img/posts/callejera.png
diff --git a/assets/img/posts/cdd.png b/public/images/img/posts/cdd.png
similarity index 100%
rename from assets/img/posts/cdd.png
rename to public/images/img/posts/cdd.png
diff --git a/assets/img/posts/chopra.jpg b/public/images/img/posts/chopra.jpg
similarity index 100%
rename from assets/img/posts/chopra.jpg
rename to public/images/img/posts/chopra.jpg
diff --git a/assets/img/posts/disorient.png b/public/images/img/posts/disorient.png
similarity index 100%
rename from assets/img/posts/disorient.png
rename to public/images/img/posts/disorient.png
diff --git a/assets/img/posts/dollars.jpeg b/public/images/img/posts/dollars.jpeg
similarity index 100%
rename from assets/img/posts/dollars.jpeg
rename to public/images/img/posts/dollars.jpeg
diff --git a/assets/img/posts/gloria.png b/public/images/img/posts/gloria.png
similarity index 100%
rename from assets/img/posts/gloria.png
rename to public/images/img/posts/gloria.png
diff --git a/assets/img/posts/rayogram.jpeg b/public/images/img/posts/rayogram.jpeg
similarity index 100%
rename from assets/img/posts/rayogram.jpeg
rename to public/images/img/posts/rayogram.jpeg
diff --git a/assets/img/posts/santo-cabron-kitchen.JPG b/public/images/img/posts/santo-cabron-kitchen.JPG
similarity index 100%
rename from assets/img/posts/santo-cabron-kitchen.JPG
rename to public/images/img/posts/santo-cabron-kitchen.JPG
diff --git a/assets/img/posts/santo_cabron_team.jpg b/public/images/img/posts/santo_cabron_team.jpg
similarity index 100%
rename from assets/img/posts/santo_cabron_team.jpg
rename to public/images/img/posts/santo_cabron_team.jpg
diff --git a/assets/img/posts/santocabron3x3.png b/public/images/img/posts/santocabron3x3.png
similarity index 100%
rename from assets/img/posts/santocabron3x3.png
rename to public/images/img/posts/santocabron3x3.png
diff --git a/assets/img/posts/tom.jpeg b/public/images/img/posts/tom.jpeg
similarity index 100%
rename from assets/img/posts/tom.jpeg
rename to public/images/img/posts/tom.jpeg
diff --git a/assets/img/prof_pic.jpg b/public/images/img/prof_pic.jpg
similarity index 100%
rename from assets/img/prof_pic.jpg
rename to public/images/img/prof_pic.jpg
diff --git a/assets/img/projects-screenshot.png b/public/images/img/projects-screenshot.png
similarity index 100%
rename from assets/img/projects-screenshot.png
rename to public/images/img/projects-screenshot.png
diff --git a/assets/img/publication_preview/brownian-motion.gif b/public/images/img/publication_preview/brownian-motion.gif
similarity index 100%
rename from assets/img/publication_preview/brownian-motion.gif
rename to public/images/img/publication_preview/brownian-motion.gif
diff --git a/assets/img/publication_preview/wave-mechanics.gif b/public/images/img/publication_preview/wave-mechanics.gif
similarity index 100%
rename from assets/img/publication_preview/wave-mechanics.gif
rename to public/images/img/publication_preview/wave-mechanics.gif
diff --git a/assets/img/publications-screenshot.png b/public/images/img/publications-screenshot.png
similarity index 100%
rename from assets/img/publications-screenshot.png
rename to public/images/img/publications-screenshot.png
diff --git a/assets/img/santocabron-horizontal.png b/public/images/img/santocabron-horizontal.png
similarity index 100%
rename from assets/img/santocabron-horizontal.png
rename to public/images/img/santocabron-horizontal.png
diff --git a/assets/img/santocabron.png b/public/images/img/santocabron.png
similarity index 100%
rename from assets/img/santocabron.png
rename to public/images/img/santocabron.png
diff --git a/assets/img/tigerlily.png b/public/images/img/tigerlily.png
similarity index 100%
rename from assets/img/tigerlily.png
rename to public/images/img/tigerlily.png
diff --git a/assets/img/yo-taco-nyc.png b/public/images/img/yo-taco-nyc.png
similarity index 100%
rename from assets/img/yo-taco-nyc.png
rename to public/images/img/yo-taco-nyc.png
From e6c3267e5fdaa03ca1a92046286c003a31626929 Mon Sep 17 00:00:00 2001
From: Daveed
Date: Sun, 24 Sep 2023 20:45:02 -0400
Subject: [PATCH 03/10] lists of blogs in posts page
---
pages/blog.md | 5 +++--
posts/2022-10-20-launch.md | 1 +
posts/2022-10-24-society-kills.md | 1 +
posts/2022-11-12-become-a-healer.md | 1 +
posts/2022-11-12-prejudice.md | 1 +
posts/2022-12-05-santo-cabron.md | 1 +
posts/2022-12-25-superproductivity.md | 1 +
posts/2022-12-27-ourspace.md | 1 +
posts/2022-12-28-gloria-js.md | 1 +
posts/2023-01-10-decomodify-wellbeing.md | 1 +
posts/2023-01-17-secret-of-kabalah.md | 1 +
posts/2023-03-13-cdd.md | 1 +
posts/2023-04-03-cabronera.md | 1 +
posts/2023-04-24-encuentra.md | 1 +
posts/2023-06-02-burning-stones.md | 1 +
posts/2023-06-06-nyerismo-callejerismo.md | 1 +
posts/2023-09-10-santo-cabron-brc-23.md | 1 +
public/images/{img => }/1.jpg | Bin
public/images/{img => }/10.jpg | Bin
public/images/{img => }/11.jpg | Bin
public/images/{img => }/12.jpg | Bin
public/images/{img => }/2.jpg | Bin
public/images/{img => }/3.jpg | Bin
public/images/{img => }/4.jpg | Bin
public/images/{img => }/5.jpg | Bin
public/images/{img => }/6.jpg | Bin
public/images/{img => }/7.jpg | Bin
public/images/{img => }/8.jpg | Bin
public/images/{img => }/9.jpg | Bin
public/images/{img => }/al-folio-preview.png | Bin
public/images/{img => }/code-screenshot.png | Bin
public/images/{img => }/david.jpg | Bin
public/images/{img => }/distill-screenshot.png | Bin
.../images/{img => }/king-david-the-second-logo.png | Bin
public/images/{img => }/math-screenshot.png | Bin
public/images/{img => }/pa/logo.gif | Bin
public/images/{img => }/pagespeed.svg | 0
public/images/{img => }/photos-screenshot.png | Bin
public/images/{img => }/posts/burningstones.png | Bin
public/images/{img => }/posts/callejera.png | Bin
public/images/{img => }/posts/cdd.png | Bin
public/images/{img => }/posts/chopra.jpg | Bin
public/images/{img => }/posts/disorient.png | Bin
public/images/{img => }/posts/dollars.jpeg | Bin
public/images/{img => }/posts/gloria.png | Bin
public/images/{img => }/posts/rayogram.jpeg | Bin
.../images/{img => }/posts/santo-cabron-kitchen.JPG | Bin
public/images/{img => }/posts/santo_cabron_team.jpg | Bin
public/images/{img => }/posts/santocabron3x3.png | Bin
public/images/{img => }/posts/tom.jpeg | Bin
public/images/{img => }/prof_pic.jpg | Bin
public/images/{img => }/projects-screenshot.png | Bin
.../publication_preview/brownian-motion.gif | Bin
.../publication_preview/wave-mechanics.gif | Bin
public/images/{img => }/publications-screenshot.png | Bin
public/images/{img => }/santocabron-horizontal.png | Bin
public/images/{img => }/santocabron.png | Bin
public/images/{img => }/tigerlily.png | Bin
public/images/{img => }/yo-taco-nyc.png | Bin
59 files changed, 19 insertions(+), 2 deletions(-)
rename public/images/{img => }/1.jpg (100%)
rename public/images/{img => }/10.jpg (100%)
rename public/images/{img => }/11.jpg (100%)
rename public/images/{img => }/12.jpg (100%)
rename public/images/{img => }/2.jpg (100%)
rename public/images/{img => }/3.jpg (100%)
rename public/images/{img => }/4.jpg (100%)
rename public/images/{img => }/5.jpg (100%)
rename public/images/{img => }/6.jpg (100%)
rename public/images/{img => }/7.jpg (100%)
rename public/images/{img => }/8.jpg (100%)
rename public/images/{img => }/9.jpg (100%)
rename public/images/{img => }/al-folio-preview.png (100%)
rename public/images/{img => }/code-screenshot.png (100%)
rename public/images/{img => }/david.jpg (100%)
rename public/images/{img => }/distill-screenshot.png (100%)
rename public/images/{img => }/king-david-the-second-logo.png (100%)
rename public/images/{img => }/math-screenshot.png (100%)
rename public/images/{img => }/pa/logo.gif (100%)
rename public/images/{img => }/pagespeed.svg (100%)
rename public/images/{img => }/photos-screenshot.png (100%)
rename public/images/{img => }/posts/burningstones.png (100%)
rename public/images/{img => }/posts/callejera.png (100%)
rename public/images/{img => }/posts/cdd.png (100%)
rename public/images/{img => }/posts/chopra.jpg (100%)
rename public/images/{img => }/posts/disorient.png (100%)
rename public/images/{img => }/posts/dollars.jpeg (100%)
rename public/images/{img => }/posts/gloria.png (100%)
rename public/images/{img => }/posts/rayogram.jpeg (100%)
rename public/images/{img => }/posts/santo-cabron-kitchen.JPG (100%)
rename public/images/{img => }/posts/santo_cabron_team.jpg (100%)
rename public/images/{img => }/posts/santocabron3x3.png (100%)
rename public/images/{img => }/posts/tom.jpeg (100%)
rename public/images/{img => }/prof_pic.jpg (100%)
rename public/images/{img => }/projects-screenshot.png (100%)
rename public/images/{img => }/publication_preview/brownian-motion.gif (100%)
rename public/images/{img => }/publication_preview/wave-mechanics.gif (100%)
rename public/images/{img => }/publications-screenshot.png (100%)
rename public/images/{img => }/santocabron-horizontal.png (100%)
rename public/images/{img => }/santocabron.png (100%)
rename public/images/{img => }/tigerlily.png (100%)
rename public/images/{img => }/yo-taco-nyc.png (100%)
diff --git a/pages/blog.md b/pages/blog.md
index 8f3c829..6782bfb 100644
--- a/pages/blog.md
+++ b/pages/blog.md
@@ -1,15 +1,16 @@
---
name: Blog
+nav: true
title: Blog | Daveed
description: Thoughts and stories
layout: full
-permalink: '/blog'
+permalink: '/posts'
---
## Blog Posts
{{#blog_posts files}}
- [{{item.attrs.title}}](/{{destination}})
+- [{{item.attrs.title}}]({{item.attrs.permalink}})
{{/blog_posts}}
### Footer
diff --git a/posts/2022-10-20-launch.md b/posts/2022-10-20-launch.md
index 6cbd8f7..0ab0312 100644
--- a/posts/2022-10-20-launch.md
+++ b/posts/2022-10-20-launch.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: New look in our website
date: 2022-10-20 08:08:00
+permalink: /2022/launch
description: Uninteresting blog post to announce something inconsequential
---
diff --git a/posts/2022-10-24-society-kills.md b/posts/2022-10-24-society-kills.md
index a96dbd9..ff94c8a 100644
--- a/posts/2022-10-24-society-kills.md
+++ b/posts/2022-10-24-society-kills.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: tw suicide - people don't kill themselves, society kills them
date: 2022-10-24 10:24:00
+permalink: /2022/society-kills
description: 'trigger warning: suicide. Sharing some of my personal experiences in the hope it can be helpful to other people and their friends'
---
diff --git a/posts/2022-11-12-become-a-healer.md b/posts/2022-11-12-become-a-healer.md
index a3b947a..40f9784 100644
--- a/posts/2022-11-12-become-a-healer.md
+++ b/posts/2022-11-12-become-a-healer.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: Becoming a healer in a community
date: 2022-11-12 09:36:00
+permalink: /2022/become-a-healer
description: There's healing potential in a community that anyone can use to heal themselves and others around them
---
diff --git a/posts/2022-11-12-prejudice.md b/posts/2022-11-12-prejudice.md
index 90547cd..f26b594 100644
--- a/posts/2022-11-12-prejudice.md
+++ b/posts/2022-11-12-prejudice.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: How to live without prejudice, from Alejandro Jodorowsky
date: 2022-11-12 08:36:00
+permalink: /2022/prejudice
description: Excerpt from an answer by Jodorowsky where he offers actionable advice to get rid of prejudice and live enlightened
---
diff --git a/posts/2022-12-05-santo-cabron.md b/posts/2022-12-05-santo-cabron.md
index dc2e6ba..2f56270 100644
--- a/posts/2022-12-05-santo-cabron.md
+++ b/posts/2022-12-05-santo-cabron.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: Santo Cabron
date: 2022-12-05 09:20:00
+permalink: /2022/santo-cabron
description: Creating a latinx artists collective
og_image: /images/posts/santo_cabron_team.jpg
---
diff --git a/posts/2022-12-25-superproductivity.md b/posts/2022-12-25-superproductivity.md
index 9b59ead..6d40540 100644
--- a/posts/2022-12-25-superproductivity.md
+++ b/posts/2022-12-25-superproductivity.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: Super Productivity tips
date: 2022-12-25 00:04:20
+permalink: /2022/superproductivity
description: do more by sleeping more
og_image: /images/posts/rayogram.jpeg
---
diff --git a/posts/2022-12-27-ourspace.md b/posts/2022-12-27-ourspace.md
index a6fbeb6..ae2701c 100644
--- a/posts/2022-12-27-ourspace.md
+++ b/posts/2022-12-27-ourspace.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: hashtag OurSpace - decentralized social network
date: 2022-12-27 04:20:09
+permalink: /2022/ourspace
description: a decentralized replacement to myspace
og_image: /images/posts/tom.jpeg
---
diff --git a/posts/2022-12-28-gloria-js.md b/posts/2022-12-28-gloria-js.md
index e7cfc82..5bf60f9 100644
--- a/posts/2022-12-28-gloria-js.md
+++ b/posts/2022-12-28-gloria-js.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: GloriaJS - simple framework for static websites
date: 2022-12-28 00:04:20
+permalink: /2022/gloria-js
description: create simple static websites, open source & free hosting
og_image: /images/posts/gloria.png
---
diff --git a/posts/2023-01-10-decomodify-wellbeing.md b/posts/2023-01-10-decomodify-wellbeing.md
index a0fcdf0..db1ff69 100644
--- a/posts/2023-01-10-decomodify-wellbeing.md
+++ b/posts/2023-01-10-decomodify-wellbeing.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: decomodify wellbeing
date: 2023-01-10 07:20:00
+permalink: /2023/decomodify-wellbeing
description: wellbeing is not something you can buy
og_image: /images/posts/chopra.jpg
---
diff --git a/posts/2023-01-17-secret-of-kabalah.md b/posts/2023-01-17-secret-of-kabalah.md
index 6dea9d8..ea487fc 100644
--- a/posts/2023-01-17-secret-of-kabalah.md
+++ b/posts/2023-01-17-secret-of-kabalah.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: The secrets of Kabbalah
date: 2023-01-17 12:42:42
+permalink: /2023/secret-of-kabalah
description: the key to unlocking permanent flow state and unlocking your intuition
og_image: /images/posts/santocabron3x3.png
---
diff --git a/posts/2023-03-13-cdd.md b/posts/2023-03-13-cdd.md
index ca500d3..e65596b 100644
--- a/posts/2023-03-13-cdd.md
+++ b/posts/2023-03-13-cdd.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: A framework for sustainable communities
date: 2023-01-17 12:42:42
+permalink: /2023/cdd
description: Create startups as a community
og_image: /images/posts/cdd.png
---
diff --git a/posts/2023-04-03-cabronera.md b/posts/2023-04-03-cabronera.md
index d169a46..54b8c32 100644
--- a/posts/2023-04-03-cabronera.md
+++ b/posts/2023-04-03-cabronera.md
@@ -2,6 +2,7 @@
layout: blog
type: post
title: Cabronera
+permalink: /2023/cabronera
date: 2023-04-03 12:42:42
description:
---
diff --git a/posts/2023-04-24-encuentra.md b/posts/2023-04-24-encuentra.md
index e1a761f..11485d3 100644
--- a/posts/2023-04-24-encuentra.md
+++ b/posts/2023-04-24-encuentra.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: Encuentra tu voz leadership workshop
date: 2023-04-20 12:42:42
+permalink: /2023/encuentra
description: This coaching methodology includes practices of logotherapy and bilingual storytelling by professional artists that can help you find your unique mission in life and express it through poetry to craft a cohesive leadership style and the confidence to inspire others
---
diff --git a/posts/2023-06-02-burning-stones.md b/posts/2023-06-02-burning-stones.md
index b4debb8..f7f71ba 100644
--- a/posts/2023-06-02-burning-stones.md
+++ b/posts/2023-06-02-burning-stones.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: Burning Stones at Disorient Country Club
date: 2023-06-02 12:42:42
+permalink: /2023/burning-stones
description: Excited to announce the opening of our dive bar at the disorient country club
og_image: /images/posts/burningstones.png
---
diff --git a/posts/2023-06-06-nyerismo-callejerismo.md b/posts/2023-06-06-nyerismo-callejerismo.md
index e447fbe..c7f4821 100644
--- a/posts/2023-06-06-nyerismo-callejerismo.md
+++ b/posts/2023-06-06-nyerismo-callejerismo.md
@@ -4,6 +4,7 @@ type: post
title: Callejera, el arte marcial colombiano y su historia.
date: 2023-06-06 12:12:42
description: Introduction to Colombian martial arts and rankings
+permalink: /2023/nyerismo-callejerismo
og_image: /images/posts/callejera.png
---
diff --git a/posts/2023-09-10-santo-cabron-brc-23.md b/posts/2023-09-10-santo-cabron-brc-23.md
index 4893641..106df9e 100644
--- a/posts/2023-09-10-santo-cabron-brc-23.md
+++ b/posts/2023-09-10-santo-cabron-brc-23.md
@@ -3,6 +3,7 @@ layout: blog
type: post
title: Santo Cabrón at Black Rock City 2023
date: 2023-09-10 04:20:15
+permalink: /2023/santo-cabron-brc-23
description: Tales of a mythical creature visiting BRC
og_image: /images/posts/santo-cabron-kitchen.JPG
---
diff --git a/public/images/img/1.jpg b/public/images/1.jpg
similarity index 100%
rename from public/images/img/1.jpg
rename to public/images/1.jpg
diff --git a/public/images/img/10.jpg b/public/images/10.jpg
similarity index 100%
rename from public/images/img/10.jpg
rename to public/images/10.jpg
diff --git a/public/images/img/11.jpg b/public/images/11.jpg
similarity index 100%
rename from public/images/img/11.jpg
rename to public/images/11.jpg
diff --git a/public/images/img/12.jpg b/public/images/12.jpg
similarity index 100%
rename from public/images/img/12.jpg
rename to public/images/12.jpg
diff --git a/public/images/img/2.jpg b/public/images/2.jpg
similarity index 100%
rename from public/images/img/2.jpg
rename to public/images/2.jpg
diff --git a/public/images/img/3.jpg b/public/images/3.jpg
similarity index 100%
rename from public/images/img/3.jpg
rename to public/images/3.jpg
diff --git a/public/images/img/4.jpg b/public/images/4.jpg
similarity index 100%
rename from public/images/img/4.jpg
rename to public/images/4.jpg
diff --git a/public/images/img/5.jpg b/public/images/5.jpg
similarity index 100%
rename from public/images/img/5.jpg
rename to public/images/5.jpg
diff --git a/public/images/img/6.jpg b/public/images/6.jpg
similarity index 100%
rename from public/images/img/6.jpg
rename to public/images/6.jpg
diff --git a/public/images/img/7.jpg b/public/images/7.jpg
similarity index 100%
rename from public/images/img/7.jpg
rename to public/images/7.jpg
diff --git a/public/images/img/8.jpg b/public/images/8.jpg
similarity index 100%
rename from public/images/img/8.jpg
rename to public/images/8.jpg
diff --git a/public/images/img/9.jpg b/public/images/9.jpg
similarity index 100%
rename from public/images/img/9.jpg
rename to public/images/9.jpg
diff --git a/public/images/img/al-folio-preview.png b/public/images/al-folio-preview.png
similarity index 100%
rename from public/images/img/al-folio-preview.png
rename to public/images/al-folio-preview.png
diff --git a/public/images/img/code-screenshot.png b/public/images/code-screenshot.png
similarity index 100%
rename from public/images/img/code-screenshot.png
rename to public/images/code-screenshot.png
diff --git a/public/images/img/david.jpg b/public/images/david.jpg
similarity index 100%
rename from public/images/img/david.jpg
rename to public/images/david.jpg
diff --git a/public/images/img/distill-screenshot.png b/public/images/distill-screenshot.png
similarity index 100%
rename from public/images/img/distill-screenshot.png
rename to public/images/distill-screenshot.png
diff --git a/public/images/img/king-david-the-second-logo.png b/public/images/king-david-the-second-logo.png
similarity index 100%
rename from public/images/img/king-david-the-second-logo.png
rename to public/images/king-david-the-second-logo.png
diff --git a/public/images/img/math-screenshot.png b/public/images/math-screenshot.png
similarity index 100%
rename from public/images/img/math-screenshot.png
rename to public/images/math-screenshot.png
diff --git a/public/images/img/pa/logo.gif b/public/images/pa/logo.gif
similarity index 100%
rename from public/images/img/pa/logo.gif
rename to public/images/pa/logo.gif
diff --git a/public/images/img/pagespeed.svg b/public/images/pagespeed.svg
similarity index 100%
rename from public/images/img/pagespeed.svg
rename to public/images/pagespeed.svg
diff --git a/public/images/img/photos-screenshot.png b/public/images/photos-screenshot.png
similarity index 100%
rename from public/images/img/photos-screenshot.png
rename to public/images/photos-screenshot.png
diff --git a/public/images/img/posts/burningstones.png b/public/images/posts/burningstones.png
similarity index 100%
rename from public/images/img/posts/burningstones.png
rename to public/images/posts/burningstones.png
diff --git a/public/images/img/posts/callejera.png b/public/images/posts/callejera.png
similarity index 100%
rename from public/images/img/posts/callejera.png
rename to public/images/posts/callejera.png
diff --git a/public/images/img/posts/cdd.png b/public/images/posts/cdd.png
similarity index 100%
rename from public/images/img/posts/cdd.png
rename to public/images/posts/cdd.png
diff --git a/public/images/img/posts/chopra.jpg b/public/images/posts/chopra.jpg
similarity index 100%
rename from public/images/img/posts/chopra.jpg
rename to public/images/posts/chopra.jpg
diff --git a/public/images/img/posts/disorient.png b/public/images/posts/disorient.png
similarity index 100%
rename from public/images/img/posts/disorient.png
rename to public/images/posts/disorient.png
diff --git a/public/images/img/posts/dollars.jpeg b/public/images/posts/dollars.jpeg
similarity index 100%
rename from public/images/img/posts/dollars.jpeg
rename to public/images/posts/dollars.jpeg
diff --git a/public/images/img/posts/gloria.png b/public/images/posts/gloria.png
similarity index 100%
rename from public/images/img/posts/gloria.png
rename to public/images/posts/gloria.png
diff --git a/public/images/img/posts/rayogram.jpeg b/public/images/posts/rayogram.jpeg
similarity index 100%
rename from public/images/img/posts/rayogram.jpeg
rename to public/images/posts/rayogram.jpeg
diff --git a/public/images/img/posts/santo-cabron-kitchen.JPG b/public/images/posts/santo-cabron-kitchen.JPG
similarity index 100%
rename from public/images/img/posts/santo-cabron-kitchen.JPG
rename to public/images/posts/santo-cabron-kitchen.JPG
diff --git a/public/images/img/posts/santo_cabron_team.jpg b/public/images/posts/santo_cabron_team.jpg
similarity index 100%
rename from public/images/img/posts/santo_cabron_team.jpg
rename to public/images/posts/santo_cabron_team.jpg
diff --git a/public/images/img/posts/santocabron3x3.png b/public/images/posts/santocabron3x3.png
similarity index 100%
rename from public/images/img/posts/santocabron3x3.png
rename to public/images/posts/santocabron3x3.png
diff --git a/public/images/img/posts/tom.jpeg b/public/images/posts/tom.jpeg
similarity index 100%
rename from public/images/img/posts/tom.jpeg
rename to public/images/posts/tom.jpeg
diff --git a/public/images/img/prof_pic.jpg b/public/images/prof_pic.jpg
similarity index 100%
rename from public/images/img/prof_pic.jpg
rename to public/images/prof_pic.jpg
diff --git a/public/images/img/projects-screenshot.png b/public/images/projects-screenshot.png
similarity index 100%
rename from public/images/img/projects-screenshot.png
rename to public/images/projects-screenshot.png
diff --git a/public/images/img/publication_preview/brownian-motion.gif b/public/images/publication_preview/brownian-motion.gif
similarity index 100%
rename from public/images/img/publication_preview/brownian-motion.gif
rename to public/images/publication_preview/brownian-motion.gif
diff --git a/public/images/img/publication_preview/wave-mechanics.gif b/public/images/publication_preview/wave-mechanics.gif
similarity index 100%
rename from public/images/img/publication_preview/wave-mechanics.gif
rename to public/images/publication_preview/wave-mechanics.gif
diff --git a/public/images/img/publications-screenshot.png b/public/images/publications-screenshot.png
similarity index 100%
rename from public/images/img/publications-screenshot.png
rename to public/images/publications-screenshot.png
diff --git a/public/images/img/santocabron-horizontal.png b/public/images/santocabron-horizontal.png
similarity index 100%
rename from public/images/img/santocabron-horizontal.png
rename to public/images/santocabron-horizontal.png
diff --git a/public/images/img/santocabron.png b/public/images/santocabron.png
similarity index 100%
rename from public/images/img/santocabron.png
rename to public/images/santocabron.png
diff --git a/public/images/img/tigerlily.png b/public/images/tigerlily.png
similarity index 100%
rename from public/images/img/tigerlily.png
rename to public/images/tigerlily.png
diff --git a/public/images/img/yo-taco-nyc.png b/public/images/yo-taco-nyc.png
similarity index 100%
rename from public/images/img/yo-taco-nyc.png
rename to public/images/yo-taco-nyc.png
From e4a763fb7913cecaadf2664601cca5dbed556d69 Mon Sep 17 00:00:00 2001
From: Daveed
Date: Sun, 24 Sep 2023 20:45:12 -0400
Subject: [PATCH 04/10] list of links in index
---
pages/index.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pages/index.md b/pages/index.md
index 86197f1..7b89dfb 100644
--- a/pages/index.md
+++ b/pages/index.md
@@ -8,4 +8,6 @@ permalink: '/'
## Links
-[Blog](/blog)
+{{#pages_in_nav files}}
+- [{{item.attrs.title}}]({{item.attrs.permalink}})
+{{/pages_in_nav}}
From eaa071a185442948ece15bbef69f1ca1f41f79c8 Mon Sep 17 00:00:00 2001
From: Daveed
Date: Sun, 24 Sep 2023 21:21:23 -0400
Subject: [PATCH 05/10] created pages and disabled deploy workflow temp
---
.github/workflows/build-and-deploy.yml | 16 ++--
404.html | 9 --
CONTRIBUTING.md | 16 ++--
Dockerfile | 13 ---
Gemfile | 23 -----
_config.yml | 1 +
_pages/cv.md | 8 --
_pages/dropdown.md | 13 ---
_pages/projects.md | 58 ------------
_pages/publications.md | 18 ----
_pages/repositories.md | 30 -------
_pages/teaching.md | 12 ---
bin/cibuild | 1 -
bin/deploy | 118 -------------------------
bin/docker_build_image.sh | 5 --
bin/docker_run.sh | 7 --
bin/dockerhub_run.sh | 7 --
blog/index.html | 104 ----------------------
layouts/tailwind/blog.layout.md | 2 +-
layouts/tailwind/full.md | 2 +-
layouts/tailwind/index.layout.md | 2 +-
package-lock.json | 10 +--
{_pages => pages}/about.md | 5 +-
{_pages => pages}/links.md | 4 +
{_pages => pages}/postatlantic.md | 7 +-
{_pages => pages}/psychomagic.md | 2 +-
{_pages => pages}/santocabron.md | 9 +-
{_pages => pages}/services.md | 4 +-
robots.txt | 7 --
29 files changed, 46 insertions(+), 467 deletions(-)
delete mode 100644 404.html
delete mode 100644 Dockerfile
delete mode 100644 Gemfile
delete mode 100644 _pages/cv.md
delete mode 100644 _pages/dropdown.md
delete mode 100644 _pages/projects.md
delete mode 100644 _pages/publications.md
delete mode 100644 _pages/repositories.md
delete mode 100644 _pages/teaching.md
delete mode 100755 bin/cibuild
delete mode 100755 bin/deploy
delete mode 100755 bin/docker_build_image.sh
delete mode 100755 bin/docker_run.sh
delete mode 100755 bin/dockerhub_run.sh
delete mode 100644 blog/index.html
rename {_pages => pages}/about.md (95%)
rename {_pages => pages}/links.md (95%)
rename {_pages => pages}/postatlantic.md (72%)
rename {_pages => pages}/psychomagic.md (99%)
rename {_pages => pages}/santocabron.md (82%)
rename {_pages => pages}/services.md (96%)
delete mode 100644 robots.txt
diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml
index e5dd11e..bd7c238 100644
--- a/.github/workflows/build-and-deploy.yml
+++ b/.github/workflows/build-and-deploy.yml
@@ -30,12 +30,12 @@ jobs:
- name: Copy 🔧 # Copies public folder to dest
run: yarn copy
- - name: Upload Artifact
- uses: actions/upload-pages-artifact@v1
- with:
- path: ./build # The folder the action should deploy.
- name: github-pages
- retention-days: 1
+ # - name: Upload Artifact
+ # uses: actions/upload-pages-artifact@v1
+ # with:
+ # path: ./build # The folder the action should deploy.
+ # name: github-pages
+ # retention-days: 1
- - name: Deploy 🚀
- uses: actions/deploy-pages@v1
+ # - name: Deploy 🚀
+ # uses: actions/deploy-pages@v1
diff --git a/404.html b/404.html
deleted file mode 100644
index 0da4ee0..0000000
--- a/404.html
+++ /dev/null
@@ -1,9 +0,0 @@
----
-layout: page
-permalink: /404.html
-title: "Page not found"
-description: "Looks like there has been a mistake. Nothing exists here."
-redirect: true
----
-
-
You will be redirected to the main page within 3 seconds. If not redirected, please click here.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 349456b..588c601 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,25 +1,27 @@
-# Contributing to al-folio
-Thank you for considering to contribute to al-folio!
+# Contributing
+Thank you for considering to contribute to this website!
## Pull Requests
+
We welcome your pull requests (PRs).
For minor fixes (e.g., documentation improvements), feel free to submit a PR directly.
If you would like to implement a new feature or a bug, please make sure you (or someone else) has opened an appropriate issue first; in your PR, please mention the issue it addresses.
## Issues
+
We use GitHub issues to track bugs and feature requests.
Before submitting an issue, please make sure:
-1. You have read [the FAQ section](https://github.com/alshedivat/al-folio#faq) of the README and your question is NOT addressed there.
-2. You have done your best to ensure that your issue is NOT a duplicate of one of [the previous issues](https://github.com/alshedivat/al-folio/issues).
+2. You have done your best to ensure that your issue is NOT a duplicate of one of [the previous issues](https://github.com/dvidsilva/dvidsilva.github.io/issues).
3. Your issue is either a bug (unexpected/undesirable behavior) or a feature request.
-If it is just a question, please ask it in the [Discussions](https://github.com/alshedivat/al-folio/discussions) forum.
+If it is just a question, please ask it in the [Discussions](https://github.com/dvidsilva/dvidsilva.github.io/discussions) forum.
When submitting an issue, please make sure to use the appropriate template.
## License
-By contributing to al-folio, you agree that your contributions will be licensed
-under the LICENSE file in the root directory of the source tree.
+
+By contributing to this website, you agree that your contributions will be
+licensed under the LICENSE file in the root directory of the source tree.
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 79aaead..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM jekyll/jekyll
-Label MAINTAINER Amir Pourmand
-#install imagemagick tool for convert command
-RUN apk add --no-cache --virtual .build-deps \
- libxml2-dev \
- shadow \
- autoconf \
- g++ \
- make \
- && apk add --no-cache imagemagick-dev imagemagick
-WORKDIR /srv/jekyll
-ADD Gemfile /srv/jekyll/
-RUN bundle install
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index 782a0c4..0000000
--- a/Gemfile
+++ /dev/null
@@ -1,23 +0,0 @@
-source 'https://rubygems.org'
-group :jekyll_plugins do
- gem 'jekyll'
- gem 'jekyll-archives'
- gem 'jekyll-diagrams'
- gem 'jekyll-email-protect'
- gem 'jekyll-feed'
- gem 'jekyll-imagemagick'
- gem 'jekyll-minifier'
- gem 'jekyll-paginate-v2'
- gem 'jekyll-scholar'
- gem 'jekyll-sitemap'
- gem 'jekyll-target-blank'
- gem 'jekyll-twitter-plugin'
- gem 'jemoji'
- gem 'mini_racer'
- gem 'unicode_utils'
- gem 'webrick'
-end
-group :other_plugins do
- gem 'httparty'
- gem 'feedjira'
-end
diff --git a/_config.yml b/_config.yml
index 6249cff..f3c35c8 100644
--- a/_config.yml
+++ b/_config.yml
@@ -14,3 +14,4 @@ theme:
css: tailwind
engine: default
version: '2'
+baseurl: https://dvidsilva.com
diff --git a/_pages/cv.md b/_pages/cv.md
deleted file mode 100644
index cab3093..0000000
--- a/_pages/cv.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-layout: cv
-permalink: /cv/
-title: cv
-nav: false
-nav_order: 4
-cv_pdf: example_pdf.pdf
----
diff --git a/_pages/dropdown.md b/_pages/dropdown.md
deleted file mode 100644
index 7fb243b..0000000
--- a/_pages/dropdown.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-layout: page
-title: submenus
-nav: false
-nav_order: 6
-dropdown: true
-children:
- - title: publications
- permalink: /publications/
- - title: divider
- - title: projects
- permalink: /projects/
----
\ No newline at end of file
diff --git a/_pages/projects.md b/_pages/projects.md
deleted file mode 100644
index d31459b..0000000
--- a/_pages/projects.md
+++ /dev/null
@@ -1,58 +0,0 @@
----
-layout: page
-title: projects
-permalink: /projects/
-description: A growing collection of your cool projects.
-nav: false
-nav_order: 2
-display_categories: [work, fun]
-horizontal: false
----
-
-
-
-{%- if site.enable_project_categories and page.display_categories %}
-
- {%- for category in page.display_categories %}
-