aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 63867e335b85e0832b0e946b4b5d18f3f0ada5a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Scerba.org

This is my personal website that takes the place of [alexscerba.org](https://alexscerba.org) (which is now my design portfolio) as my life update and social page.

## Structure

* Index: homepage with brief intro to the purpose, look, and feel of the site.
* Blog: collection of personal stories, thoughts, and projects.
* Gallery: curated collection of images on the site.
* About: longer form intro story about myself
* FAQ: specifics about the site

## Dev Checklist

* [x] Initial stage: Static page set, no gallery page.
* [] Templates and dynamic site: Basic Go webserver akin to what's used on [alexscerba.com](https://alexscerba.com).
* [] Advanced tagging system: Integrate lessons learned from [acsq.me](https://acsq.me).
* [] Image scraping and gallery: Scrape and agregate all images from the site into a lazy-loading image gallery.

## Aspiring Feature List
* Previous and Next butons on each post
* Recomended posts based on tags
* Homepage features latest four posts and two curated posts
* Gallery needs masonry layout
* Back to blog button on blog posts
* View posts by selecting one or more tags with check boxes
* Image lightbox for every image

## Useful Commands
* magick image.jpg -resize 1000x1000 image_1000.jpg
* for file in $(ls -1 | sed 's/\.[^.]*$//'); do magick "$file.jpg" -resize 1000x1000 "$(echo $file)_1000.jpg"; done