This repository contains the source code for learn.banano.trade, a comprehensive tutorial website for Banano cryptocurrency.
Learn Banano is built with Jekyll using the Minima theme and is hosted on GitHub Pages. The site provides tutorials, guides, and interactive tools for learning about and working with Banano.
To run this site locally:
- Clone this repository
- Install Ruby and Bundler
- Run
bundle installto install dependencies - Run
bundle exec jekyll serveto start the local server - Visit
http://localhost:4000in your browser
To contribute to this site:
- Fork this repository
- Create a new branch for your changes
- Add or modify Markdown files in the
_postsdirectory - Submit a pull request
To add a new tutorial:
- Create a new Markdown file in the
_postsdirectory with the formatYYYY-MM-DD-title.md - Add front matter at the top of the file:
---
layout: post
title: "Your Tutorial Title"
date: YYYY-MM-DD HH:MM:SS +0000
categories: tutorial
tags: [beginner, wallet, etc]
scripts:
- /assets/js/specific-script.js # Optional
---- Write your tutorial content in Markdown
- If your tutorial requires JavaScript, add it to the
scriptsarray in the front matter
This project is licensed under the MIT License - see the LICENSE file for details.