A software development blog featuring posts, lessons, business essays, and projects.
🌐 Live Site: https://nulledgeable.github.io
- Clean, DokuWiki-inspired design
- Purple and gold color scheme
- Responsive layout with hamburger side menu
- Separate sections for Posts, Reading List, About Me, Lessons, Business Essays, and Projects
- HTML5 Boilerplate structure
- GitHub Pages ready
.
├── css/
│ ├── normalize.css # CSS reset
│ └── main.css # Main styles
├── js/
│ └── main.js # Main JavaScript
├── img/
│ └── profile.jpg # Profile image
├── index.html # Home page
├── posts.html # Blog posts
├── reading-list.html # Book recommendations
├── about.html # About page
├── lessons.html # Lessons learned
├── business.html # Business essays
├── projects.html # Project showcase
├── 404.html # Error page
├── _config.yml # Jekyll configuration
├── .nojekyll # Bypass Jekyll processing
├── favicon.ico # Favicon
├── icon.png # App icon
├── robots.txt # Robots file
├── humans.txt # Humans file
└── site.webmanifest # Web app manifest
This site is configured for GitHub Pages deployment:
- Push your changes to the
mainbranch - Go to your repository Settings → Pages
- Set Source to "Deploy from a branch"
- Select
mainbranch and/ (root)folder - Click Save
Your site will be live at https://nulledgeable.github.io
Since this is a static HTML site, you can:
- Open
index.htmldirectly in your browser, or - Use a local server:
# Python 3 python -m http.server 8000 # Node.js (with http-server) npx http-server
- Visit
http://localhost:8000
- Replace
img/profile.jpgwith your profile photo - Update social media links in
about.html - Customize content in
js/main.js - Replace
favicon.icoandicon.pngwith your branding - Update colors in
css/main.css(CSS variables at the top)
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
MIT