Markdown, Liquid, HTML & CSS go in. Static sites come out ready for deployment.
Configure your site
Jekyll uses a file titled _config.yml to store settings for your site, your theme, and reusable content like your site title and GitHub handle. Learn more in the Jekyll configuration documentation.
<ul> {% for post in site.posts %} <li> <a href="{{site.baseurl}}{{ post.url }}">{{ post.title }}</a> – {{ post.date | date: "%B %d, %Y" }} </li> {% endfor %}</ul>
Adding a theme to your GitHub Pages site using Jekyll 🔗
Edit _config.yml and add theme: THEME-NAME using the name of a supported theme
# Build settingsmarkdown: kramdownremote_theme: pages-themes/cayman@v0.2.0plugins: - jekyll-feed - jekyll-remote-theme # add this line to the plugins list if you already have one