Skip to content

BuckshotPlusPlus/BuckshotPlusPlus

Repository files navigation


Logo

Explore the docs
View Demo - Report Bug - Request Feature

Downloads Contributors Forks Stargazers Issues License

Table Of Contents

Getting Started

Get the lastest executable for Buckshot++ in the release section or compile from source.

Create a main.bpp

Main.bpp

The example code below will create a simple buckshot++ website with an index page displaying the title "Hello World!".

view Title {
  content = "Hello World!"
  type = "h1"
  color = "blue"
}

view Home {
  type = "body"
  margin = "0"
  padding = "0"
  content = Title
}

page index {
	title = "Home!"
	body = Home
}

Start your BuckShot++ server

BuchshotPlusPlus.exe "Path/To/Main.bpp"

Enjoy!

Authors