title: "Splash Page" layout: splash permalink: /splash-page/ date: 2020-04-08 header: overlay_color: "#000" overlay_filter: "0.5" overlay_image: /assets/splash/coffee.jpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
header: | |
teaser: "/path/to/image.png" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "How to add a teaser image to minimal mistakes" | |
date: 2020-04-06 | |
categories: | |
- blog | |
tags: | |
- Jekyll | |
- update | |
header: | |
teaser: "/assets/2020-04-06-add-teaser-to-minimal-mistakes/before.png" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logo from './logo.svg'; | |
import './App.css'; | |
function App() { | |
return ( | |
<div> | |
<div className='content'> | |
<h1 className='heading'>Google Fonts in React</h1> | |
<h2 className='subheading'>Learn how to add fonts in a React Project</h2> | |
<p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
This is a script that tries to convert Roam Daily Notes to Noteplan Calendar | |
Notes. All it does is find files in the current directory that have a name | |
matching the Roam Daily Notes format (e.g. "August 8th, 2020.md"), rename them | |
to the Noteplan Calendar Notes format (YYYYMMDD, e.g. "20200808.md") and move | |
them into a subfolder of the current directory: 'renamed_daily_notes'. | |
I recommend you read this blog post before going any further: |