leapdao / leapdao-website

Home Page:https://leapdao.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

leapdao-website

Init

npm install

Build

npm run build

Running locally

  1. npm run dev
  2. Open it in the browser (http://localhost:3000 is default)

Adding blog articles

Add new file my-super-article.md to src/posts. Content of the file as follows:

---
template: post.html
title:    "Article title goes here"
date:     2018-03-28 00:00:00
image:    image-to-be-used-for-preview.png
author:
  name: name
  twitter: "@handle"
  link: https://github.com/name/
description: short summary of the article and will be shown in twitter preview.
---

Text of the article goes here

Adjust filename, title, date, image and text.

  • filename - will be used in article URL. E.g. /blog/my-super-article.
  • title - article name. Shown on the article list page and on the article page.
  • date - article publishing date. Shown on the article list page and on the article page. Articles on the article list page are sorted by this date (latest first).
  • author - (optional) either an author name or an object with author details:
    • name — name
    • twitter — (optional) twitter handle. Will be used in link and in twitter:card
    • link — (optional) arbitrary link. If both link and twitter specified, twitter will be used.
  • description - short summary of the post to be used in previews and snippets (e.g. twitter)
  • text - text of the article in Markdown format.

Commit the file to github. Our CI server will do the rest and your article will be available shortly at test.leapdao.org/blog/my-super-article.

About

https://leapdao.org


Languages

Language:Svelte 59.1%Language:JavaScript 22.9%Language:HTML 8.6%Language:CSS 7.4%Language:Shell 2.2%