From 3ab4d1904d4aa356ec39b952707e72907397e5f5 Mon Sep 17 00:00:00 2001 From: Humberto Alfonso Díaz Date: Wed, 19 Jun 2019 08:17:22 +0200 Subject: STRUCT Repo structure with basic layout --- src/app.js | 6 +++++ src/app.scss | 3 +++ src/config.xml | 20 ++++++++++++++ src/icon.png | Bin 0 -> 9958 bytes src/icon.svg | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/index.html | 16 +++++++++++ 6 files changed, 128 insertions(+) create mode 100644 src/app.js create mode 100644 src/app.scss create mode 100644 src/config.xml create mode 100644 src/icon.png create mode 100644 src/icon.svg create mode 100644 src/index.html (limited to 'src') diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..694d4fa --- /dev/null +++ b/src/app.js @@ -0,0 +1,6 @@ +console.log('Arrancada la aplicación compilando CSS y SaSS'); + + +/* CSS */ +import 'bootstrap/dist/css/bootstrap.min.css'; +import './app.scss'; \ No newline at end of file diff --git a/src/app.scss b/src/app.scss new file mode 100644 index 0000000..c489d30 --- /dev/null +++ b/src/app.scss @@ -0,0 +1,3 @@ +body { + background: red; +} \ No newline at end of file diff --git a/src/config.xml b/src/config.xml new file mode 100644 index 0000000..1f409f6 --- /dev/null +++ b/src/config.xml @@ -0,0 +1,20 @@ + + + HTML5 Homescreen + + + HTML5 Homescreen demo + Igalia, S.L. + MIT + + + + + + + + + + + + \ No newline at end of file diff --git a/src/icon.png b/src/icon.png new file mode 100644 index 0000000..1025c17 Binary files /dev/null and b/src/icon.png differ diff --git a/src/icon.svg b/src/icon.svg new file mode 100644 index 0000000..4ea294c --- /dev/null +++ b/src/icon.svg @@ -0,0 +1,83 @@ + + + + + + + + + + image/svg+xml + + + + + + + + <h> + + diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..e036d15 --- /dev/null +++ b/src/index.html @@ -0,0 +1,16 @@ + + + + + + + + +

h1. Bootstrap heading

+

h2. Bootstrap heading

+

h3. Bootstrap heading

+

h4. Bootstrap heading

+
h5. Bootstrap heading
+
h6. Bootstrap heading
+ + \ No newline at end of file -- cgit 1.2.3-korg