Always start with an Update:
$ sudo apt-get update
Create folder for project:
$ mkdir production
# BloomU.info | |
git init --bare | |
-------- | |
git clone https://github.com/riodw/BloomU.git | |
------ OR --------- | |
git remote add origin https://github.com/riodw/BloomU.git | |
git fetch origin master:master | |
git reset --hard origin/master |
<!-- Useing the HTML "template" tag --> | |
<html> | |
<head> | |
<title>Use HTML Template tag</title> | |
</head> | |
<body> | |
<template id="t"> | |
<div>Hello World!</div> | |
</template> |
<!-- Rio Weber | |
Create Custom HTML Element --> | |
<html> | |
<head> | |
<title>Make Custom HTML Element</title> | |
</head> | |
<body> | |
<hello-element></hello-element> | |
<script> |