Get more about what's new Today in AI. This repository is a Jekyll blog configured for GitHub Pages.
- Push to GitHub.
- In your repo settings, enable Pages and select the branch containing this site.
- Update
_config.ymlwith your site URL:
url: "https://YOUR_GITHUB_USERNAME.github.io"
baseurl: "/your-repo-name" # leave empty if repo is USERNAME.github.ioGitHub Pages will build and deploy the site automatically.
Create a markdown file in _pages with front matter:
---
title: AI Tools
description: "A running list of tools worth tracking."
nav: true
nav_order: 3
image: /assets/img/social-card.svg
---The page is published at /ai-tools/.
Create a markdown file in _posts using the date prefix:
YYYY-MM-DD-your-title.md
Example:
---
title: "AI Reads: January Highlights"
description: "Highlights, links, and thoughts."
image: /assets/img/social-card.svg
---Posts are published at /blog/your-title/.
This site includes jekyll-seo-tag for Open Graph and Twitter metadata. To customize the preview per page:
image: /assets/img/your-social-card.png
description: "Short summary for previews."You can replace assets/img/social-card.svg with your own image for richer previews.
bundle install
bundle exec jekyll serveThen visit http://localhost:4000.