diff options
author | Marvin Borner | 2020-05-15 16:14:35 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-15 16:14:35 +0200 |
commit | 462fe26ba6ee6850026e241980ac1267ed05cdcd (patch) | |
tree | 1d4ba5b5c68aa4f795e0ff06d0676ca4c5c24c17 /.boilerplates/web | |
parent | d7dc1e53a76e76fd14584d27386115c49c6be91d (diff) |
Added boilerplate tool
Diffstat (limited to '.boilerplates/web')
-rw-r--r-- | .boilerplates/web/index.html | 13 | ||||
-rwxr-xr-x | .boilerplates/web/run | 3 | ||||
-rw-r--r-- | .boilerplates/web/script.js | 0 | ||||
-rw-r--r-- | .boilerplates/web/style.css | 5 |
4 files changed, 21 insertions, 0 deletions
diff --git a/.boilerplates/web/index.html b/.boilerplates/web/index.html new file mode 100644 index 0000000..47f32f6 --- /dev/null +++ b/.boilerplates/web/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <link rel="stylesheet" href="style.css" type="text/css" media="all"> + <title>Index</title> + </head> + <body> + + <script src="script.js" charset="utf-8"></script> + </body> +</html> diff --git a/.boilerplates/web/run b/.boilerplates/web/run new file mode 100755 index 0000000..f878e94 --- /dev/null +++ b/.boilerplates/web/run @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +$BROWSER index.html diff --git a/.boilerplates/web/script.js b/.boilerplates/web/script.js new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.boilerplates/web/script.js diff --git a/.boilerplates/web/style.css b/.boilerplates/web/style.css new file mode 100644 index 0000000..625c2f0 --- /dev/null +++ b/.boilerplates/web/style.css @@ -0,0 +1,5 @@ +html, body { + padding: 0; + margin: 0; + font-family: sans-serif; +} |