This repository hosts the Seeq technical blog, powered by GitHub Pages and Jekyll.
🌐 https://seeq12.github.io/seeqBlog
- Ruby 2.7+
- Bundler
- Jekyll
# Install dependencies
bundle install
# Run local server
bundle exec jekyll serve
# Visit http://localhost:4000/seeqBlog- Create a new file in
_posts/with the format:YYYY-MM-DD-title.md - Add front matter:
---
layout: post
title: "Your Post Title"
date: 2025-12-05
categories: [engineering, tutorial]
author: "Your Name"
---- Write your content in Markdown
- Commit and push to main branch
- GitHub Pages will automatically build and deploy
seeqBlog/
├── _config.yml # Site configuration
├── _posts/ # Blog posts
├── _layouts/ # Page layouts
├── _includes/ # Reusable components
├── assets/ # CSS, JS, images
├── _authors/ # Author profiles
├── index.md # Home page
└── README.md # This file
See CONTRIBUTING.md for guidelines on writing and submitting blog posts.
Copyright © 2025 Seeq Corporation. All rights reserved.