The website for Cosmos - Internet of Blockchains.
$ git clone https://github.com/cosmos/v1.cosmos.network.git
$ cd v1.cosmos.network
$ npm i
$ npm run serve
- View the running app in your browser at
http://localhost:8080
Run npm run build
and then serve the generated ./dist
directory.
There is a list of newsletters published at /newsletters
. Each item in the grid links to a static HTML page of a newsletter. To add a newsletter, locate /public/newsletters
and create a directory named YYYY-MM
. Inside the directory add a index.html
file. The file should contain <title>This is a title</title>
on a separate line, this line is used to generate a title in the grid view. Add an image cover.jpg
, which will be used as a cover image.
Under the hood, /pre.sh
script is executed before serve
and build
npm commands. The script indexes /public/newsletters/
directory and generates a temporary /src/newsletters.txt
with a list of all newsletters. This file is imported by a Newsletters.vue
component to generate a grid. This file is removed by /post.sh
script after serve
or build
exits and should not be commited to the repo.
- Sitemap.xml is currently being maintained manually. The sitemap is to be added when there is a new page created.