Skip to content

Instantly share code, notes, and snippets.

View loralighte's full-sized avatar
🔐
https://www.youtube.com/watch?v=HsM_VmN6ytk

Kai Lyons loralighte

🔐
https://www.youtube.com/watch?v=HsM_VmN6ytk
  • Potabi Technological Developments, LLC
  • Colorado Springs, CO
View GitHub Profile
# $1 = Git source (i.e github.com)
# $2 = Git user/org (i.e Potabi, use "" if there is no organization/user applicable)
# $3 = Git repository (i.e potabi-build)
git clone https://$1/$2/$3
cd $3
sh build.sh
@loralighte
loralighte / index.meml
Created May 10, 2021 20:51
Bulma + MEML
(head
(title "Fivnex")
(import "./node_modules/bulma/css/bulma.min.css")
(import "./main.css"))
(body
(div class="navbar"
(div class="navbar-brand"
(a href="https://fivnex.co" class="navbar-item"
(img src="./images/ico.png")
(h1 class="subtitle" "Fivnex")))
(head
(title "Hello, World"))
(body
(div id="nav"
(dropdown
(dditem href="#" "Item 1")
(dditem href="#" "Item 2")
(dditem href="#" "Item 3")
(dditem href="#" "Item 4"))))
@loralighte
loralighte / example.meml
Created January 20, 2021 23:31
example.meml
(head
(title "Hello World!"))
(body
(p "Basic website made with MEML!"))