Skip to content

Commit

Permalink
I just wanted to write a blog, then realized fastpages was obsolete, …
Browse files Browse the repository at this point in the history
…so migrated to quarto and then wrote a blog
  • Loading branch information
SubhadityaMukherjee committed Jul 6, 2024
1 parent 0d66297 commit 8d370cf
Show file tree
Hide file tree
Showing 77 changed files with 19,606 additions and 0 deletions.
25 changes: 25 additions & 0 deletions blog/.github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
workflow_dispatch:
push:
branches: main

name: Quarto Publish

jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15 changes: 15 additions & 0 deletions blog/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/.quarto/
*.swp
~*
*~
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor
_notebooks/.ipynb_checkpoints
# Local Netlify folder
.netlify
.tweet-cache
__pycache__

Empty file added blog/.nojekyll
Empty file.
19 changes: 19 additions & 0 deletions blog/_quarto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
project:
type: website
output-dir: docs

website:
title: "OpenML Blog"
description: "Open machine learning blog"
navbar:
right:
- about.qmd
- icon: github
href: https://github.com/openml/blog
format:
html:
theme: cosmo
css: styles.css



16 changes: 16 additions & 0 deletions blog/about.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: "About"
image: openml-logo.png
about:
template: jolla
links:
- icon: github
text: Github
href: https://github.com/openml/blog

---

# Welcome to the Open Machine Learning blog
This blog brings you stories about OpenML: why we want to streamline machine learning research, how you can use it, and what we are doing.
We are also open to [your stories](https://github.com/openml/blog#how-to-contribute) about anything related to open machine learning research, education, and applications.
Join the conversation :).
Empty file added blog/docs/.nojekyll
Empty file.
Loading

0 comments on commit 8d370cf

Please sign in to comment.