This page is built with Devii! Check out the source code for this under /md/blog/test.md
.
Devii is a starter kit for building a personal website with the best tools 2020 has to offer.
/md/blog
to add a new post to your blog!title
, subtitle
, datePublished
(timestamp), author
, authorPhoto
, and bannerPhoto
.Markdown.tsx
) contains default styles inspired by Medium.yarn build && yarn export
. Powered by Next.js.GitHub-style code blocks: with syntax highlighting powered by react-syntax-highlighter. Works out-of-the-box for all programming languages. Just use Markdown's triple backtick syntax with a "language identifier", just like GitHub.
// pretty neat huh?
const test: (arg: string) => boolean = (arg) => {
return arg.length > 5;
};
Utterly customizable: We provide a minimal interface to get you started, but you can customize every aspect of the rendering and styling by just modifying index.tsx
(the home page), BlogPost.tsx
(the blog post template), and Markdown.tsx
(the Markdown renderer). And of course you can add entirely new pages as well!
Head to the GitHub repo to get started: https://github.com/colinhacks/devii. If you like this project, leave a ⭐️star⭐️ to help more people find Devii 😎