This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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"))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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")))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(head | |
(title "Hello World!")) | |
(body | |
(p "Basic website made with MEML!")) |