https://github.com/kellyky/website
Personal website
https://github.com/kellyky/website
blogposts git learnings portfolio-website
Last synced: 2 months ago
JSON representation
Personal website
- Host: GitHub
- URL: https://github.com/kellyky/website
- Owner: kellyky
- Created: 2024-10-24T05:57:44.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T07:35:55.000Z (7 months ago)
- Last Synced: 2025-03-26T17:23:18.360Z (3 months ago)
- Topics: blogposts, git, learnings, portfolio-website
- Language: HTML
- Homepage: https://kellyky.github.io/website/
- Size: 5.17 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
A website and maybe proto-portfolio.
A place I enjoy working on, while I learn the things and share the learnings.Created initially as user space within [https://www.aavalam.org/](https://www.aavalam.org/).
## Visiting
[https://aavalam.org/~kellyky/](https://aavalam.org/~kellyky/)Or
[https://kellyky.github.io/website/](https://kellyky.github.io/website/)
## Setup
No setup needed for visitors to either website above.
But to view the pages locally:1. Clone the repository
2. Navigate to it `cd website`
3. For the URL, use the absolute path with index.html`
- example `file:///Users/me/path/more-of-the-path/website/index.html`Page has a mix of internal/external links.
## File Structure
```plaintext
├── README.md
├── assets
│ ├── css
│ │ ├── header_footer.css
│ │ ├── index.css
│ │ ├── main.css
│ │ ├── notes.css
│ │ └── today_i_learned.css
│ └── images
│ ├── keel_achill.jpg
│ ├── keem_achill.jpg
│ └── myajima.png
├── bin
│ └── render
├── index.html
├── notes.html
├── today_i_learned.html
└── views
├── index.erb
├── notes.erb
├── partials
│ ├── _footer.erb
│ └── _header.erb
└── today_i_learned.erb
```## Updates
First time making updates: `chmod +x bin/render` for executable permissions.Partials exist for header, footer. Do **not** update html files directly.
Steps
1. Update the appropriate .erb file(s) - or css/other (just not html directly)
2. Re-render: run `bin/render` from the root of the project. This (re)creates html files.