tota 0.6.2
tota: ^0.6.2 copied to clipboard
A simple and elegant framework for generating static sites. Great for personal websites, blogs, documentation, and more.
Tota #
Tota is a simple and elegant static-site generator, written in Dart. Great for personal websites, side-projects, blogs, documentation, and more.
Install #
Pre-requisites:
- Install Dart 2.3+
Then, activate the package globally:
pub global activate tota
copied to clipboard
Quick start #
Setup your site
mkdir -p blog && cd blog
tota init
copied to clipboard
Create a new post
tota new "Hello, world!"
vim pages/hello-world.md
copied to clipboard
Generate static files
tota build
copied to clipboard
Deploy site
tota deploy
copied to clipboard
See --help
for usage information.