diff --git a/README.md b/README.md index e02f90c..5182367 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ # 2017lunario -2017 - 0x7E1 - 3741- year 11111100001 - 4° year After Snowden's age - Year of 365 days - 1 month of 28, 4 of 30, 7 of 31 - Lunario di hacklabBO v0.1 alfa - thinked on Earth, crafted in the Net +2017 - 0x7E1 - 3741- year 11111100001 +4° year After Snowden's age - Year of 365 days - 1 month of 28, 4 of 30, 7 of 31 - Lunario di hacklabBO v0.1 alfa - thinked on Earth, crafted in the Net + +Project: + +Example on xubuntu: + +sudo apt-get install nodejs +sudo apt-get install npm +sudo ln -s /usr/bin/nodejs /usr/bin/node +node -v +sudo apt-get install git +git clone http://git.lattuga.net/hacklabbo/2017lunario.git 2017lunario +cd 2017lunario +git remote add origin http://git.lattuga.net/hacklabbo/2017lunario.git +git remote -v +npm install +pug index.pug diff --git a/img/cyberright_black.gif b/img/cyberright_black.gif new file mode 100644 index 0000000..48f0709 Binary files /dev/null and b/img/cyberright_black.gif differ diff --git a/includes/foot.pug b/includes/foot.pug new file mode 100644 index 0000000..f7d611f --- /dev/null +++ b/includes/foot.pug @@ -0,0 +1,3 @@ +//- includes/foot.pug +footer#footer + p Copyright (c) HacklabBO diff --git a/includes/head.pug b/includes/head.pug new file mode 100644 index 0000000..87a805b --- /dev/null +++ b/includes/head.pug @@ -0,0 +1,5 @@ +//- includes/head.pug +head + 2017 lunario + script(src='/javascripts/jquery.js') + script(src='/javascripts/app.js') diff --git a/index.pug b/index.pug new file mode 100644 index 0000000..4c03d4e --- /dev/null +++ b/index.pug @@ -0,0 +1,7 @@ +doctype html +html + include includes/head.pug + body + h1 2017 - 0x7E1 - 3741 - 11111100001 + p 4° year After Snowden's age + include includes/foot.pug diff --git a/package.json b/package.json new file mode 100644 index 0000000..f2b6980 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "2017lunario", + "version": "1.0.0", + "description": "hacklabBo's calendar 2017", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "http://git.lattuga.net/hacklabbo/2017lunario.git" + }, + "author": "ignifugo@insicuri.net", + "license": "GPL-3.0", + "dependencies": { + "jquery": "^3.1.1", + "pug": "^2.0.0-beta6" + } +}