From 54bcff5142899bc481af5787d6c2989c2d2433dd Mon Sep 17 00:00:00 2001
From: gurusabarish
Date: Thu, 13 May 2021 22:48:06 +0530
Subject: [PATCH 1/9] v3 development
---
.gitignore | 3 -
config.yaml | 129 ++++++
content/blog/emoji-support.md | 34 ++
content/blog/markdown-syntax.md | 143 +++++++
content/blog/placeholder-text.md | 40 ++
content/blog/rich-content.md | 51 +++
content/project/hugo.md | 9 +
layouts/_default/baseof.html | 40 +-
layouts/_default/single.html | 29 +-
layouts/index.html | 98 ++++-
layouts/partials/footer.html | 142 -------
layouts/partials/sections/about.html | 149 -------
layouts/partials/sections/do_things.html | 45 --
layouts/partials/sections/v1/about.html | 70 ++++
layouts/partials/sections/v1/blog.html | 23 ++
layouts/partials/sections/v1/contact.html | 31 ++
layouts/partials/sections/v1/do_things.html | 45 ++
layouts/partials/sections/v1/footer.html | 15 +
layouts/partials/sections/v1/head.html | 6 +
layouts/partials/sections/v1/header.html | 34 ++
layouts/partials/sections/v1/header1.html | 39 ++
layouts/partials/sections/v1/home.html | 114 ++++++
layouts/partials/sections/v1/projects.html | 46 +++
.../partials/{ => sections/v1}/scripts.html | 0
layouts/partials/sections/v2/about.html | 133 ++++++
layouts/partials/sections/v2/do_things.html | 45 ++
layouts/partials/sections/v2/footer.html | 129 ++++++
layouts/partials/{ => sections/v2}/head.html | 2 +-
.../partials/{ => sections/v2}/header.html | 0
layouts/partials/sections/v2/scripts.html | 3 +
layouts/partials/sections/v3/about.html | 33 ++
.../partials/sections/v3/achievements.html | 27 ++
layouts/partials/sections/v3/contact.html | 33 ++
layouts/partials/sections/v3/education.html | 27 ++
layouts/partials/sections/v3/experience.html | 100 +++++
layouts/partials/sections/v3/footer.html | 136 +++++++
layouts/partials/sections/v3/head.html | 10 +
layouts/partials/sections/v3/home.html | 59 +++
layouts/partials/sections/v3/navbar.html | 25 ++
layouts/partials/sections/v3/projects.html | 114 ++++++
layouts/partials/sections/v3/scripts.html | 3 +
static/bg.svg | 11 +
static/contact.svg | 237 +++++++++++
static/css/v1/blog.css | 115 ++++++
static/css/v1/head_foot.css | 13 +
static/css/v1/v1.css | 203 +++++++++
static/css/{index.css => v2/post.css} | 117 ------
static/css/v2/v2.css | 81 ++++
static/css/v3/v3.css | 385 ++++++++++++++++++
static/education.svg | 224 ++++++++++
static/images/bg.svg | 155 +++++++
static/images/v1/avatar.webp | Bin 0 -> 16994 bytes
static/images/v1/background.png | Bin 0 -> 4630 bytes
static/images/v1/guru.svg | 84 ++++
static/images/v1/performance.webp | Bin 0 -> 7514 bytes
static/images/v1/project.webp | Bin 0 -> 10478 bytes
static/js/contact.js | 0
v1.yaml | 122 ++++++
v2.yaml | 73 ++++
v3.yaml | 83 ++++
60 files changed, 3626 insertions(+), 491 deletions(-)
create mode 100644 config.yaml
create mode 100644 content/blog/emoji-support.md
create mode 100644 content/blog/markdown-syntax.md
create mode 100644 content/blog/placeholder-text.md
create mode 100644 content/blog/rich-content.md
create mode 100644 content/project/hugo.md
delete mode 100644 layouts/partials/footer.html
delete mode 100644 layouts/partials/sections/about.html
delete mode 100644 layouts/partials/sections/do_things.html
create mode 100644 layouts/partials/sections/v1/about.html
create mode 100644 layouts/partials/sections/v1/blog.html
create mode 100644 layouts/partials/sections/v1/contact.html
create mode 100644 layouts/partials/sections/v1/do_things.html
create mode 100644 layouts/partials/sections/v1/footer.html
create mode 100644 layouts/partials/sections/v1/head.html
create mode 100644 layouts/partials/sections/v1/header.html
create mode 100644 layouts/partials/sections/v1/header1.html
create mode 100644 layouts/partials/sections/v1/home.html
create mode 100644 layouts/partials/sections/v1/projects.html
rename layouts/partials/{ => sections/v1}/scripts.html (100%)
create mode 100644 layouts/partials/sections/v2/about.html
create mode 100644 layouts/partials/sections/v2/do_things.html
create mode 100644 layouts/partials/sections/v2/footer.html
rename layouts/partials/{ => sections/v2}/head.html (88%)
rename layouts/partials/{ => sections/v2}/header.html (100%)
create mode 100644 layouts/partials/sections/v2/scripts.html
create mode 100644 layouts/partials/sections/v3/about.html
create mode 100644 layouts/partials/sections/v3/achievements.html
create mode 100644 layouts/partials/sections/v3/contact.html
create mode 100644 layouts/partials/sections/v3/education.html
create mode 100644 layouts/partials/sections/v3/experience.html
create mode 100644 layouts/partials/sections/v3/footer.html
create mode 100644 layouts/partials/sections/v3/head.html
create mode 100644 layouts/partials/sections/v3/home.html
create mode 100644 layouts/partials/sections/v3/navbar.html
create mode 100644 layouts/partials/sections/v3/projects.html
create mode 100644 layouts/partials/sections/v3/scripts.html
create mode 100644 static/bg.svg
create mode 100644 static/contact.svg
create mode 100644 static/css/v1/blog.css
create mode 100644 static/css/v1/head_foot.css
create mode 100644 static/css/v1/v1.css
rename static/css/{index.css => v2/post.css} (60%)
create mode 100644 static/css/v2/v2.css
create mode 100644 static/css/v3/v3.css
create mode 100644 static/education.svg
create mode 100644 static/images/bg.svg
create mode 100644 static/images/v1/avatar.webp
create mode 100644 static/images/v1/background.png
create mode 100644 static/images/v1/guru.svg
create mode 100644 static/images/v1/performance.webp
create mode 100644 static/images/v1/project.webp
create mode 100644 static/js/contact.js
create mode 100644 v1.yaml
create mode 100644 v2.yaml
create mode 100644 v3.yaml
diff --git a/.gitignore b/.gitignore
index 3047de8..c75eecc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1 @@
/public
-/content
-/config.yaml
-/static/images
\ No newline at end of file
diff --git a/config.yaml b/config.yaml
new file mode 100644
index 0000000..39a2007
--- /dev/null
+++ b/config.yaml
@@ -0,0 +1,129 @@
+baseURL: "https://example.com"
+languageCode: "en-us"
+title: "Hugo-profile"
+
+googleanalytics: UA-xxxxxx-x
+disqusShortname:
+Paginate: 3
+ignoreErrors: ["error-remote-getjson"]
+markup:
+ goldmark:
+ renderer:
+ unsafe: true
+
+taxonomies:
+ tag: "tags"
+ category: "categories"
+
+enableEmoji: true
+params:
+ version: 3
+
+ favicon: "/images/fav.png"
+ description: "A high performance hugo theme for personal portfolio and blog."
+
+ # Navbar Menus
+ customMenus:
+ - name: "About"
+ Url: "/#about"
+ - name: "Experience"
+ Url: "/#experience"
+ - name: "Education"
+ Url: "/#education"
+ - name: "Projects"
+ Url: "/#projects"
+ - name: "Contact"
+ Url: "/#contact"
+ - name: Achievements
+ Url: "/#achievements"
+ - name: "Blog"
+ Url: "/blog"
+
+ # home
+ socialiconfooter: true
+ disablehome: false
+ profile_image: "/images/gurusabarish.webp"
+ name: "Gurusabarish"
+ profession: "Full stack developer"
+ github: "https://github.com/gurusabarish"
+ linkedin: "https://linkedin.com/in/gurusabarish"
+ twitter: "https://twitter.com/gurusabarishh"
+ instagram: "https://instagram.com/gurusabarishh"
+ facebook: "https://facebook.com"
+
+ # About
+ descripe_l1_person: "Hi, I'm Gurusabarish, a passionate web developer and ML engineer. I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly."
+ descripe_l2_person: "I started my career as a web developer back in 2020 when try to make a blog for me. You can find my works [here](#projects)"
+ skills:
+ - name: CSS
+ percentage: 90
+ - name: Django
+ percentage: 85
+ - name: Hugo
+ percentage: 80
+ - name: React JS
+ percentage: 70
+
+ # Experience
+ experience:
+ - company: "Google"
+ role: "Software developer"
+ startdate: Feb 2021
+ enddate: April 2021
+ featuredpoints:
+ - point: It's a very good experience.
+ - point: It's a very good experience.
+ - point: It's a very good experience.
+ - company: "Googlye"
+ role: "Software developer"
+ startdate: Feb 2021
+ enddate: April 2021
+ featuredpoints:
+ - point: It's a very good experience.It's a very good experience.It's a very good experience.
+ - point: It's a very good experience.
+ - point: It's a very good experience.
+ - company: "Gootgle"
+ role: "Software developer"
+ startdate: Feb 2021
+ enddate: April 2021
+ featuredpoints:
+ - point: It's a very good experience.
+ - point: It's a very good experience.
+ - point: It's a very good experience.
+
+ # Education
+ education:
+ - degree: "B.tech"
+ branch: "Information Technology"
+ university: "Bannari Amman Institute Of Technology"
+ startedyear: "2021"
+ graduation: "2023"
+ - degree: "B.tech"
+ branch: "Information Technology"
+ university: "Bannari Amman Institute Of Technology"
+ startedyear: "2021"
+ graduation: "2023"
+ - degree: "B.tech"
+ branch: "Information Technology"
+ university: "Bannari Amman Institute Of Technology"
+ startedyear: "2021"
+ graduation: "2023"
+
+ # Projects
+ projects:
+ - name: "hugo profile"
+ img: https://blog.gurusabarish.tech/blog/deploy-hugo/hero.jpg
+ githublink: ""
+ featuredlink: ""
+ description: ""
+
+ # Achievements
+ achievements:
+ - title: Techfest winner
+ description: It's a great experience.
+ img: https://blog.gurusabarish.tech/blog/deploy-hugo/hero.jpg
+
+ #Description for seo. If you want to show description in your listing or single page, let's make it true
+ showdescription: false
+ tweet: true
+ recentposts: true
diff --git a/content/blog/emoji-support.md b/content/blog/emoji-support.md
new file mode 100644
index 0000000..f305bae
--- /dev/null
+++ b/content/blog/emoji-support.md
@@ -0,0 +1,34 @@
+---
+title: "Emoji Support"
+date: 2021-04-03T22:53:58+05:30
+draft: false
+github_link: "https://github.com/gurusabarish/hugo-profile"
+author: "Gurusabarish"
+tags:
+ - Emoji support
+bg_image: ""
+description: ""
+toc:
+---
+
+Emoji can be enabled in a Hugo project in a number of ways.
+
+The [emojify](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
+
+To enable emoji globally, set ```enableEmoji``` to ```true``` in your site’s [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+```
+.emoji {
+ font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
+}
+```
+
+
+
+[Markdown format for emoji](https://gist.github.com/rxaviers/7360908)
diff --git a/content/blog/markdown-syntax.md b/content/blog/markdown-syntax.md
new file mode 100644
index 0000000..d2746c1
--- /dev/null
+++ b/content/blog/markdown-syntax.md
@@ -0,0 +1,143 @@
+---
+title: "Markdown Syntax"
+date: 2021-04-03T23:29:21+05:30
+draft: false
+github_link: "https://github.com/gurusabarish/hugo-profile"
+author: "Gurusabarish"
+tags:
+ - Markdown syntax
+bg_image: ""
+description: ""
+toc:
+---
+
+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.
+
+
+## Headings
+
+The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` 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.
+> — Rob Pike[^1]
+
+
+[^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 | Markdown | In | Table |
+| ------------------------ | -------------------------- | ----------------------------------- | ------ |
+| *italics* | **bold** | ~~strikethrough~~ | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+``` html
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+```
+#### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+
+#### Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+{{< /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
+
+GIF is a bitmap image format.
+
+H2O
+
+Xn + Yn = Zn
+
+Press CTRL+ALT+Delete to end the session.
+
+Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
\ No newline at end of file
diff --git a/content/blog/placeholder-text.md b/content/blog/placeholder-text.md
new file mode 100644
index 0000000..19012bf
--- /dev/null
+++ b/content/blog/placeholder-text.md
@@ -0,0 +1,40 @@
+---
+title: "Placeholder Text"
+date: 2021-04-03T22:41:10+05:30
+draft: false
+github_link: "https://github.com/gurusabarish/hugo-profile"
+author: "Gurusabarish"
+tags:
+ - Placeholder text
+bg_image: ""
+description: ""
+toc:
+---
+
+Lorem est tota propiore conpellat pectoribus de pectora summo.
+
+Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+ 1. Exierant elisi ambit vivere dedere
+ 2. Duce pollice
+ 3. Eris modo
+ 4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
+
+ 1. Comas hunc haec pietate fetum procerum dixit
+ 2. Post torum vates letum Tiresia
+ 3. Flumen querellas
+ 4. Arcanaque montibus omnes
+ 5. Quidem et
+
+# Vagus elidunt
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mane refeci capiebant unda mulcebat
+Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. Faces illo pepulere tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel mitis temploque vocatus, inque alis, oculos nomen non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides parte.
\ No newline at end of file
diff --git a/content/blog/rich-content.md b/content/blog/rich-content.md
new file mode 100644
index 0000000..dbe56a8
--- /dev/null
+++ b/content/blog/rich-content.md
@@ -0,0 +1,51 @@
+---
+title: "Rich Content"
+date: 2021-04-03T19:53:33+05:30
+draft: false
+author: "Gurusabarish"
+tags:
+ - Rich content
+bg_image: ""
+description: ""
+toc:
+---
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+
+## Gist Simple Shortcode
+```
+{{* gist spf13 7896402 "img.html" */>}}
+```
+
+{{< gist spf13 7896402 "img.html" >}}
+
+
+
+
+## Twitter Simple Shortcode
+```
+{{* tweet 877500564405444608 */>}}
+```
+
+{{< tweet 877500564405444608 >}}
+
+
+
+
+## Vimeo Simple Shortcode
+```
+{{* vimeo 146022717 */>}}
+```
+
+{{< vimeo 146022717 >}}
+
+
+
+
+## Youtube Simple Shortcode
+```
+{{* youtube w7Ft2ymGmfc */>}}
+```
+
+{{< youtube w7Ft2ymGmfc >}}
+
diff --git a/content/project/hugo.md b/content/project/hugo.md
new file mode 100644
index 0000000..9ef4456
--- /dev/null
+++ b/content/project/hugo.md
@@ -0,0 +1,9 @@
+---
+title: "Hugo"
+date: 2021-05-04T11:30:13+05:30
+draft: false
+img: https://blog.gurusabarish.tech/blog/deploy-hugo/hero.jpg
+description: "Build your website with “Hugo” comment Go to the terminal and type “hugo” … "
+github: https://github.com/gurusabarish
+featured: https://blog.gurusabarish.tech
+---
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index eaec5fe..2d46dd0 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -2,15 +2,39 @@
- {{- partial "head.html" . -}}
- {{- block "head" . -}}{{- end }}
+ {{ if eq .Site.Params.version 1 }}
+ {{- partial "sections/v1/head.html" . -}}
+
+
+ {{- block "head" . -}}{{- end }}
+
+ {{ else if eq .Site.Params.version 2 }}
+ {{- partial "sections/v2/head.html" . -}}
+ {{- block "head" . -}}{{- end }}
+ {{ else if eq .Site.Params.version 3 }}
+ {{ else }}
+ {{ end }}
+
-
- {{- partial "scripts.html" . -}}
- {{- partial "header.html" . -}}
- {{- block "main" . -}}{{- end }}
- {{- partial "footer.html" . -}}
+
+ {{ if eq .Site.Params.version 1 }}
+ {{- partial "sections/v1/scripts.html" . -}}
+ {{- partial "sections/v1/header1.html" . -}}
+ {{- block "main" . -}}{{- end }}
+ {{- partial "sections/v1/footer.html" . -}}
+
+ {{ else if eq .Site.Params.version 2 }}
+ {{- partial "sections/v2/scripts.html" . -}}
+ {{- partial "sections/v2/header.html" . -}}
+ {{- block "main" . -}}{{- end }}
+ {{- partial "sections/v2/footer.html" . -}}
+
+ {{ else if eq .Site.Params.version 3 }}
+ {{ else }}
+ {{ end }}
+
+
-
\ No newline at end of file
+
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 732047b..0cffc09 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -3,7 +3,13 @@
{{ .Title }}
-
+{{ if eq .Site.Params.version 1 }}
+
+{{ else if eq .Site.Params.version 2 }}
+
+{{ else if eq .Site.Params.version 3 }}
+{{ else }}
+{{ end }}
{{ end }}
@@ -17,12 +23,9 @@
-
{{ dateFormat "Jan 2, 2006" .Date }}
@@ -30,8 +33,7 @@
{{ if .Params.author }}
-
+
@@ -39,9 +41,9 @@
{{ end }}
{{ if .Site.Params.tweet }}
+
-
-{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/sections/v1/about.html b/layouts/partials/sections/v1/about.html
new file mode 100644
index 0000000..425d0cc
--- /dev/null
+++ b/layouts/partials/sections/v1/about.html
@@ -0,0 +1,70 @@
+
+
+
+
About Me
+
+
+
+
+
+
{{ .Site.Params.job }}
+
+ {{ if .Site.Params.linkedin }}
+
+
+
+
+
+ {{ end }}
+
+
\ No newline at end of file
diff --git a/layouts/partials/sections/v1/blog.html b/layouts/partials/sections/v1/blog.html
new file mode 100644
index 0000000..944fceb
--- /dev/null
+++ b/layouts/partials/sections/v1/blog.html
@@ -0,0 +1,23 @@
+
+
+
+
+
Recent posts
+
+
+
+ {{ range first 4 (where site.RegularPages.ByDate.Reverse "Type" "in" site.Params.mainSections )}}
+
+
\ No newline at end of file
diff --git a/layouts/partials/scripts.html b/layouts/partials/sections/v1/scripts.html
similarity index 100%
rename from layouts/partials/scripts.html
rename to layouts/partials/sections/v1/scripts.html
diff --git a/layouts/partials/sections/v2/about.html b/layouts/partials/sections/v2/about.html
new file mode 100644
index 0000000..a41440f
--- /dev/null
+++ b/layouts/partials/sections/v2/about.html
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+ {{ if .Site.Params.profile_image }}
+
+ {{ end }}
+
+ {{ if .Site.Params.name }}
+ {{ .Site.Params.name }}
+ {{ end }}
+