Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgurusabarish <gurusabarisha@gmail.com>2020-10-09 21:27:00 +0300
committergurusabarish <gurusabarisha@gmail.com>2020-10-09 21:27:00 +0300
commit00cf92f1f0695e1fdde41e5892afa6ec22d6bafc (patch)
treec2c5d0babbf36056b055dc004b155d7c01da8ff1
parentd344d83f01a518e730036af110e6f7b640c3b188 (diff)
user friendly
-rw-r--r--examplesite/config.yaml1
-rw-r--r--examplesite/content/blog/markdown.md147
-rw-r--r--examplesite/content/blog/markdown_1.md145
-rw-r--r--examplesite/content/blog/markdown_2.md145
-rw-r--r--examplesite/content/blog/markdown_3.md143
-rw-r--r--examplesite/static/images/avatar-370-456322.webpbin16994 -> 0 bytes
-rw-r--r--examplesite/static/images/background.pngbin4630 -> 0 bytes
-rw-r--r--examplesite/static/images/bg-image-2.jpgbin671306 -> 0 bytes
-rw-r--r--examplesite/static/images/bg-image-3.jpgbin72081 -> 0 bytes
-rw-r--r--examplesite/static/images/bg-image-4.jpgbin97165 -> 0 bytes
-rw-r--r--examplesite/static/images/bg-image-5.jpgbin103186 -> 0 bytes
-rw-r--r--examplesite/static/images/bg-image.jpgbin62982 -> 0 bytes
-rw-r--r--examplesite/static/images/gif.gifbin1061834 -> 0 bytes
-rw-r--r--examplesite/static/images/guru.svg84
-rw-r--r--examplesite/static/images/gurusabarish.jpgbin32796 -> 0 bytes
-rw-r--r--examplesite/static/images/hugo.pngbin7993 -> 0 bytes
-rw-r--r--examplesite/static/images/project.pngbin79296 -> 0 bytes
-rw-r--r--examplesite/static/images/screenshot.PNGbin132257 -> 0 bytes
-rw-r--r--examplesite/static/images/tn.pngbin60349 -> 0 bytes
19 files changed, 0 insertions, 665 deletions
diff --git a/examplesite/config.yaml b/examplesite/config.yaml
index d36daae..47aeae6 100644
--- a/examplesite/config.yaml
+++ b/examplesite/config.yaml
@@ -3,7 +3,6 @@ languageCode: "en-us"
title: "Hugo-profile"
theme: "hugo-profile"
-
Paginate: 3
taxonomies:
diff --git a/examplesite/content/blog/markdown.md b/examplesite/content/blog/markdown.md
deleted file mode 100644
index 781e435..0000000
--- a/examplesite/content/blog/markdown.md
+++ /dev/null
@@ -1,147 +0,0 @@
----
-title: "Markdown syntax"
-date: 2020-08-13T23:03:58+05:30
-draft: false
-subtitle: "Javascript"
-bg_image: "/images/bg-image.jpg"
-description: "Markdown syntax"
-author: "Gurusabarish"
-github_link: "https://github.com/gurusabarish/hugo-profile"
-tags:
- - markdown
- - css
- - html
- - themes
- - blog
----
-
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-<!--more-->
-
-## Headings
-
-The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-
-#### Blockquote with attribution
-
-
-> Don't communicate by sharing memory, share memory by communicating.</p>
-> — <cite>Rob Pike[^1]</cite>
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-``` html
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-```
-#### Code block indented with four spaces
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
- </head>
- <body>
- <p>Test</p>
- </body>
- </html>
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Item
-1. First Sub-item
-2. Second Sub-item
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-
-H<sub>2</sub>O
-
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
-
-Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
-
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. \ No newline at end of file
diff --git a/examplesite/content/blog/markdown_1.md b/examplesite/content/blog/markdown_1.md
deleted file mode 100644
index d21089f..0000000
--- a/examplesite/content/blog/markdown_1.md
+++ /dev/null
@@ -1,145 +0,0 @@
----
-title: "Markdown syntax"
-date: 2020-08-15T13:22:10+05:30
-draft: false
-subtitle: "Javascript"
-github_link: "https://github.com/gurusabarish/hugo-profile"
-author: "Gurusabarish"
-tags:
- - markdown
- - css
- - blog
-bg_image: "/images/bg-image-4.jpg"
-description: "Markdown syntax"
----
-
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-<!--more-->
-
-## Headings
-
-The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-
-#### Blockquote with attribution
-
-
-> Don't communicate by sharing memory, share memory by communicating.</p>
-> — <cite>Rob Pike[^1]</cite>
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-``` html
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-```
-#### Code block indented with four spaces
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
- </head>
- <body>
- <p>Test</p>
- </body>
- </html>
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Item
-1. First Sub-item
-2. Second Sub-item
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-
-H<sub>2</sub>O
-
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
-
-Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
-
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. \ No newline at end of file
diff --git a/examplesite/content/blog/markdown_2.md b/examplesite/content/blog/markdown_2.md
deleted file mode 100644
index e58c7c6..0000000
--- a/examplesite/content/blog/markdown_2.md
+++ /dev/null
@@ -1,145 +0,0 @@
----
-title: "Markdown syntax"
-date: 2020-08-14T13:30:29+05:30
-draft: false
-subtitle: "Javascript"
-author: "Gurusabarish"
-github_link: "https://github.com/gurusabarish/hugo-profile"
-tags:
- - blog
- - theme
- - javascript
-bg_image: "/images/bg-image-5.jpg"
-description: "Markdown syntax"
----
-
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-<!--more-->
-
-## Headings
-
-The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-
-#### Blockquote with attribution
-
-
-> Don't communicate by sharing memory, share memory by communicating.</p>
-> — <cite>Rob Pike[^1]</cite>
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-``` html
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-```
-#### Code block indented with four spaces
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
- </head>
- <body>
- <p>Test</p>
- </body>
- </html>
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Item
-1. First Sub-item
-2. Second Sub-item
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-
-H<sub>2</sub>O
-
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
-
-Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
-
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. \ No newline at end of file
diff --git a/examplesite/content/blog/markdown_3.md b/examplesite/content/blog/markdown_3.md
deleted file mode 100644
index 92ccf42..0000000
--- a/examplesite/content/blog/markdown_3.md
+++ /dev/null
@@ -1,143 +0,0 @@
----
-title: "Markdown syntax"
-date: 2020-09-28T16:19:06+05:30
-draft: false
-subtitle: ""
-github_link: "https://github.com/gurusabarish/hugo-profile"
-author: ""
-tags:
- - markdown
-bg_image: ""
-description: "Markdown syntax"
----
-
-This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
-<!--more-->
-
-## Headings
-
-The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-## Paragraph
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-
-## Blockquotes
-
-The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
-
-#### Blockquote without attribution
-
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use *Markdown syntax* within a blockquote.
-
-
-#### Blockquote with attribution
-
-
-> Don't communicate by sharing memory, share memory by communicating.</p>
-> — <cite>Rob Pike[^1]</cite>
-
-
-[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
-
- | Name | Age |
- | ----- | --- |
- | Bob | 27 |
- | Alice | 23 |
-
-#### Inline Markdown within tables
-
-| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
-| ------------------------ | -------------------------- | ----------------------------------- | ------ |
-| *italics* | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
-
-## Code Blocks
-
-#### Code block with backticks
-
-``` html
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-```
-#### Code block indented with four spaces
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
- </head>
- <body>
- <p>Test</p>
- </body>
- </html>
-
-#### Code block with Hugo's internal highlight shortcode
-{{< highlight html >}}
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-{{< /highlight >}}
-
-## List Types
-
-#### Ordered List
-
-1. First item
-2. Second item
-3. Third item
-
-#### Unordered List
-
-* List item
-* Another item
-* And another item
-
-#### Nested list
-
-* Item
-1. First Sub-item
-2. Second Sub-item
-
-## Other Elements — abbr, sub, sup, kbd, mark
-
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-
-H<sub>2</sub>O
-
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
-
-Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
-
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. \ No newline at end of file
diff --git a/examplesite/static/images/avatar-370-456322.webp b/examplesite/static/images/avatar-370-456322.webp
deleted file mode 100644
index 1b0d57b..0000000
--- a/examplesite/static/images/avatar-370-456322.webp
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/background.png b/examplesite/static/images/background.png
deleted file mode 100644
index 9ea30e4..0000000
--- a/examplesite/static/images/background.png
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/bg-image-2.jpg b/examplesite/static/images/bg-image-2.jpg
deleted file mode 100644
index 0c78c73..0000000
--- a/examplesite/static/images/bg-image-2.jpg
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/bg-image-3.jpg b/examplesite/static/images/bg-image-3.jpg
deleted file mode 100644
index c8e99b3..0000000
--- a/examplesite/static/images/bg-image-3.jpg
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/bg-image-4.jpg b/examplesite/static/images/bg-image-4.jpg
deleted file mode 100644
index f67a2ca..0000000
--- a/examplesite/static/images/bg-image-4.jpg
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/bg-image-5.jpg b/examplesite/static/images/bg-image-5.jpg
deleted file mode 100644
index 2aa4e1d..0000000
--- a/examplesite/static/images/bg-image-5.jpg
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/bg-image.jpg b/examplesite/static/images/bg-image.jpg
deleted file mode 100644
index 2813afc..0000000
--- a/examplesite/static/images/bg-image.jpg
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/gif.gif b/examplesite/static/images/gif.gif
deleted file mode 100644
index f517e6e..0000000
--- a/examplesite/static/images/gif.gif
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/guru.svg b/examplesite/static/images/guru.svg
deleted file mode 100644
index f82b72b..0000000
--- a/examplesite/static/images/guru.svg
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="350px" height="302px" viewBox="0 0 350 302" style="enable-background:new 0 0 350 302;" xml:space="preserve">
-<style type="text/css">
- .st0{fill:#F9C758;}
- .st1{fill:#FAFAFA;}
- .st2{fill:#9B9B9B;}
- .st3{fill:#B3B3B3;}
- .st4{fill:#CFCFCF;}
- .st5{fill:#FFFFFF;}
- .st6{fill:#464646;}
- .st7{fill:#FC86B4;}
- .st8{fill:#D66DF7;}
- .st9{fill:#D3D2D1;}
- .st10{fill:#FBC39D;}
- .st11{fill:#9DF9E1;}
- .st12{fill:#565656;}
-</style>
-<g>
- <path class="st0" d="M288.9,160.7h-16.1c-0.3,0-0.5,0.2-0.5,0.5v12.2c0,3.6,2.9,6.4,6.4,6.4h4.3c3.6,0,6.4-2.9,6.4-6.4v-12.2
- C289.4,161,289.2,160.7,288.9,160.7z"/>
- <path class="st0" d="M287,177.8c3.6-2,9.9-8.1,8.8-12.4c-0.3-1.1-1-2-2-2.5c-2.4-1.1-5.8,0.2-6.2,0.4l1.1,2.4
- c0.8-0.3,2.9-0.9,3.8-0.4c0.2,0.1,0.4,0.2,0.5,0.7c0.6,2.5-4.3,7.7-7.5,9.5L287,177.8z"/>
-</g>
-<path class="st1" d="M213.4,165.1H77.9c-1.8,0-3.3-1.5-3.3-3.3V83.5c0-1.8,1.5-3.3,3.3-3.3h135.5c1.8,0,3.3,1.5,3.3,3.3v78.3
- C216.7,163.6,215.2,165.1,213.4,165.1z"/>
-<path class="st2" d="M161.7,176.2c-0.5-1.4-0.7-2.8-0.7-4.3v-6.8h-15.3H145h-13.7v6.8c0,1.5-0.2,2.9-0.7,4.3c-0.7,1.9-2.1,4-4.6,4
- h19h0.7h20.6C163.8,180.2,162.4,178.1,161.7,176.2z"/>
-<path class="st3" d="M300.3,189.3H65.8c-1.2,0-2.1-0.9-2.1-2.1v-4.9c0-1.2,0.9-2.1,2.1-2.1h234.4c1.2,0,2.1,0.9,2.1,2.1v4.9
- C302.4,188.4,301.5,189.3,300.3,189.3z"/>
-<path class="st4" d="M213.4,151.6H77.9c-1.8,0-3.3-1.5-3.3-3.3V70c0-1.8,1.5-3.3,3.3-3.3h135.5c1.8,0,3.3,1.5,3.3,3.3v78.3
- C216.7,150.1,215.2,151.6,213.4,151.6z"/>
-<rect x="80.1" y="71.3" class="st5" width="131.3" height="74.7"/>
-<path class="st5" d="M280.4,156.1c0.5-0.2,1.1-0.5,1.5-0.8c0.5-0.3,0.9-0.8,1.1-1.2c0.2-0.5,0.2-0.9-0.1-1.3c-0.3-0.4-0.7-0.7-1.1-1
- c-0.5-0.3-1-0.5-1.5-0.7c-0.2-0.1-0.6-0.2-0.9-0.3s-0.6-0.3-0.9-0.5c-1.2-0.7-2.3-1.6-3.2-2.8c-0.9-1.1-1.6-2.5-2-3.9
- c-0.4-1.5-0.6-3-0.3-4.7c0.2-0.8,0.4-1.7,0.9-2.6c0.4-0.9,1.1-1.7,1.9-2.4s1.8-1.2,2.8-1.5s2-0.4,3-0.5h1c2.3,0,4.3,1.8,4.3,4.2
- c0,2.3-1.8,4.3-4.2,4.3c-0.7,0-1.3-0.2-1.9-0.4c-0.5-0.2-0.8-0.4-1.1-0.4c-0.3,0-0.8,0.3-1.2,0.9c-0.4,0.6-0.6,1.5-0.6,2.4
- s0.1,1.9,0.5,2.8c0.4,0.9,0.9,1.8,1.6,2.6c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.2,0.4,0.3,0.7,0.5c0.5,0.4,1,0.8,1.5,1.3s0.9,1,1.2,1.8
- c0.1,0.4,0.2,0.8,0.1,1.1c-0.1,0.4-0.2,0.7-0.4,1c-0.4,0.6-0.9,0.9-1.4,1.3c-0.5,0.3-1.1,0.6-1.6,0.9c-0.1,0.1-0.3,0-0.3-0.1
- C280.2,156.3,280.3,156.1,280.4,156.1L280.4,156.1L280.4,156.1z"/>
-<path class="st6" d="M108.6,132.2c0.1,0.1,0.3,0,0.4-0.1l2.5-2.5l1.8,3.6c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0,0.1,0,0.2,0l1.5-0.8
- c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0-0.2,0-0.3l-1.7-3.3h3.3c0.1,0,0.3-0.1,0.3-0.2c0.1-0.1,0-0.3-0.1-0.4l-8.3-7.6
- c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0.1-0.2,0.2-0.2,0.3v11.1C108.4,132,108.5,132.1,108.6,132.2z"/>
-<rect x="92.8" y="87.5" class="st7" width="20.7" height="10.5"/>
-<rect x="118.5" y="87.5" class="st8" width="56.3" height="10.5"/>
-<rect x="92.8" y="105.4" class="st0" width="48.5" height="3"/>
-<rect x="92.8" y="113.2" class="st0" width="42.6" height="3"/>
-<g>
- <path class="st9" d="M277,76.2c-13.7,0-24.8-11.1-24.8-24.8s11.1-24.8,24.8-24.8s24.8,11.1,24.8,24.8
- C301.9,65.1,290.7,76.2,277,76.2z M277,30.1c-11.7,0-21.3,9.5-21.3,21.3s9.5,21.3,21.3,21.3s21.3-9.5,21.3-21.3
- S288.7,30.1,277,30.1z"/>
- <path class="st9" d="M277.6,52.9h-16.1c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9h15.2v-16c0-0.5,0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9
- v16.8C278.5,52.4,278.1,52.9,277.6,52.9z"/>
-</g>
-<path class="st10" d="M186.1,176.2L111,181c-6.5,0.4-12-4.5-12.5-11l0,0c-0.4-6.5,4.5-12,11-12.5l75.1-4.8c3.9-0.3,7.3,2.7,7.6,6.7
- l0.6,9.1C193,172.5,190,175.9,186.1,176.2z"/>
-<path class="st11" d="M138.2,131.5L101,157.7c-4.9,3.5-6.2,10.2-2.9,15.2l0,0c2.5,3.8,7.1,5.8,11.6,4.9c16.4-3.3,54-11,53.6-12.3
- c-0.3-1-4.5-15.9-7.8-27.9C153.3,130.2,144.5,127.1,138.2,131.5z"/>
-<path class="st10" d="M163.4,176.2l75.1,4.8c6.5,0.4,12-4.5,12.5-11l0,0c0.4-6.5-4.5-12-11-12.5l-75.1-4.8c-3.9-0.3-7.3,2.7-7.6,6.7
- l-0.6,9.1C156.5,172.5,159.5,175.9,163.4,176.2z"/>
-<path class="st11" d="M211.3,131.5l37.2,26.2c4.9,3.5,6.2,10.2,2.9,15.2l0,0c-2.5,3.8-7.1,5.8-11.6,4.9c-16.4-3.3-54-11-53.6-12.3
- c0.3-1,4.5-15.9,7.8-27.9C196.2,130.2,205,127.1,211.3,131.5z"/>
-<g>
- <ellipse class="st6" cx="145.6" cy="91.2" rx="7.3" ry="7.6"/>
- <ellipse class="st6" cx="200.6" cy="91.2" rx="7.3" ry="7.6"/>
- <path class="st6" d="M170.9,131.7L170.9,131.7c0.7,0.1,1.5,0.2,2.2,0.2l0,0c2.3,0,4.6-0.3,6.7-0.9c0,0,0,0,0-0.1
- c11.9-3.1,20.7-14.3,20.7-27.7V69.8c0-15.8-12.3-13.3-27.5-13.3l0,0c-15.2,0-27.5-2.5-27.5,13.3v33.5
- C145.6,118.2,156.7,130.5,170.9,131.7z"/>
- <path class="st6" d="M195,92.2v9h-9.7c0,0-2.4-6.5-12.2-6.5s-12.2,6.5-12.2,6.5h-9.7v-9c0-3.6-3.3-4.7-5.5-5.1v16.1
- c0,15,11.1,27.3,25.2,28.4l0,0c0.8,0.1,1.5,0.1,2.3,0.1s1.5,0,2.3-0.1l0,0c14.1-1.2,25.2-13.5,25.2-28.4V87.1
- C198.4,87.5,195,88.7,195,92.2z"/>
- <path class="st6" d="M193.3,45.5c-7.5-1.1-19.2-1.2-27.8,5.8c-0.2,0.2-0.4,0.4-0.5,0.5h-6.8c-7,0-12.6,4.9-12.6,11V69v14.2v17.4
- c1.3,0,2.3-1.1,2.3-2.4V73.9c0,0,0.4-7.7,7.4-7.7h16h0.1h18.2c7.5,0,8.4,6.8,8.5,7.7v24.5c0,1.3,1,2.4,2.3,2.4V83.4V69.1v-5.5
- l0.1-9.5C200.7,49.8,197.5,46.1,193.3,45.5z"/>
-</g>
-<rect x="147.1" y="62.1" class="st6" width="53.1" height="46"/>
-<path class="st12" d="M188,275.3h-30c-21,0-37.9-18.3-37.9-40.9l9.5-82c3.3-21.9,23.5-35.9,44-35.9l0,0c20.7,0,41.1,14.4,44.1,36.5
- l8.3,81.4C226,256.9,209,275.3,188,275.3z"/>
-<path class="st4" d="M180,299.2h-13.6c-1.5,0-2.7-1.2-2.7-2.7V187.2c0-1.5,1.2-2.7,2.7-2.7H180c1.5,0,2.7,1.2,2.7,2.7v109.3
- C182.7,298,181.5,299.2,180,299.2z"/>
-<path class="st6" d="M184.5,194.7H161c-2.9,0-5.2-2.3-5.2-5.2v-9.9c0-2.9,2.3-5.2,5.2-5.2h23.5c2.9,0,5.2,2.3,5.2,5.2v9.9
- C189.8,192.4,187.4,194.7,184.5,194.7z"/>
-</svg>
diff --git a/examplesite/static/images/gurusabarish.jpg b/examplesite/static/images/gurusabarish.jpg
deleted file mode 100644
index 8318222..0000000
--- a/examplesite/static/images/gurusabarish.jpg
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/hugo.png b/examplesite/static/images/hugo.png
deleted file mode 100644
index 50e23ce..0000000
--- a/examplesite/static/images/hugo.png
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/project.png b/examplesite/static/images/project.png
deleted file mode 100644
index 225edb5..0000000
--- a/examplesite/static/images/project.png
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/screenshot.PNG b/examplesite/static/images/screenshot.PNG
deleted file mode 100644
index 3a22fd1..0000000
--- a/examplesite/static/images/screenshot.PNG
+++ /dev/null
Binary files differ
diff --git a/examplesite/static/images/tn.png b/examplesite/static/images/tn.png
deleted file mode 100644
index 382e42b..0000000
--- a/examplesite/static/images/tn.png
+++ /dev/null
Binary files differ