---
config.toml | 91 +-
content/_index.md | 12 -
content/projects/_index.md | 6 -
content/projects/contributions/_index.md | 7 -
content/projects/creations/_index.md | 7 -
.../projects/creations/baseline-telematics.md | 12 -
content/projects/creations/pinestem.md | 27 -
content/projects/creations/powerpath.md | 28 -
content/projects/creations/raceone.md | 6 -
data/skills.json | 26 -
public/404.html | 78 ++
public/categories/index.html | 89 ++
public/categories/index.xml | 14 +
public/categories/page/1/index.html | 1 +
public/css/style.min.css | 1 +
public/images/favicon-16x16.png | Bin 0 -> 313 bytes
public/images/favicon-32x32.png | Bin 0 -> 347 bytes
public/index.html | 95 ++
public/index.xml | 14 +
public/less/style.less | 351 +++++
public/resume.pdf | Bin 0 -> 50810 bytes
public/sitemap.xml | 20 +
public/tags/index.html | 89 ++
public/tags/index.xml | 14 +
public/tags/page/1/index.html | 1 +
static/img/pinestem.png | Bin 20641 -> 0 bytes
static/img/powerpath.jpg | Bin 95956 -> 0 bytes
static/resume.pdf | Bin 0 -> 50810 bytes
themes/hugo-coder/.editorconfig | 29 +
themes/hugo-coder/.gitignore | 1 +
themes/hugo-coder/LICENSE.md | 20 +
themes/hugo-coder/Makefile | 30 +
themes/hugo-coder/README.md | 106 ++
themes/hugo-coder/archetypes/default.md | 5 +
themes/hugo-coder/archetypes/posts.md | 8 +
themes/hugo-coder/exampleSite/config.toml | 46 +
.../hugo-coder/exampleSite/content/about.md | 29 +
.../content/posts/creating-a-new-theme.md | 1144 +++++++++++++++++
.../content/posts/goisforlovers.md | 343 +++++
.../content/posts/hugoisforlovers.md | 87 ++
.../content/posts/migrate-from-jekyll.md | 150 +++
.../exampleSite/content/posts/theme-demo.md | 74 ++
.../hugo-coder/exampleSite/layouts/.gitkeep | 0
themes/hugo-coder/exampleSite/static/.gitkeep | 0
themes/hugo-coder/images/screenshot.png | Bin 0 -> 24817 bytes
themes/hugo-coder/images/tn.png | Bin 0 -> 16798 bytes
themes/hugo-coder/layouts/404.html | 3 +
.../hugo-coder/layouts/_default/baseof.html | 47 +
themes/hugo-coder/layouts/_default/list.html | 6 +
.../hugo-coder/layouts/_default/single.html | 6 +
themes/hugo-coder/layouts/index.html | 3 +
themes/hugo-coder/layouts/partials/404.html | 7 +
.../hugo-coder/layouts/partials/footer.html | 5 +
.../hugo-coder/layouts/partials/header.html | 16 +
themes/hugo-coder/layouts/partials/home.html | 13 +
themes/hugo-coder/layouts/partials/list.html | 11 +
themes/hugo-coder/layouts/partials/page.html | 9 +
.../layouts/partials/pagination.html | 48 +
themes/hugo-coder/layouts/partials/post.html | 42 +
themes/hugo-coder/layouts/posts/single.html | 6 +
themes/hugo-coder/static/css/style.min.css | 1 +
.../static/images/favicon-16x16.png | Bin 0 -> 313 bytes
.../static/images/favicon-32x32.png | Bin 0 -> 347 bytes
themes/hugo-coder/static/less/style.less | 351 +++++
themes/hugo-coder/theme.toml | 26 +
themes/hugo-resume | 1 -
66 files changed, 3475 insertions(+), 187 deletions(-)
delete mode 100644 content/_index.md
delete mode 100644 content/projects/_index.md
delete mode 100644 content/projects/contributions/_index.md
delete mode 100644 content/projects/creations/_index.md
delete mode 100644 content/projects/creations/baseline-telematics.md
delete mode 100644 content/projects/creations/pinestem.md
delete mode 100644 content/projects/creations/powerpath.md
delete mode 100644 content/projects/creations/raceone.md
delete mode 100644 data/skills.json
create mode 100644 public/404.html
create mode 100644 public/categories/index.html
create mode 100644 public/categories/index.xml
create mode 100644 public/categories/page/1/index.html
create mode 100644 public/css/style.min.css
create mode 100644 public/images/favicon-16x16.png
create mode 100644 public/images/favicon-32x32.png
create mode 100644 public/index.html
create mode 100644 public/index.xml
create mode 100644 public/less/style.less
create mode 100644 public/resume.pdf
create mode 100644 public/sitemap.xml
create mode 100644 public/tags/index.html
create mode 100644 public/tags/index.xml
create mode 100644 public/tags/page/1/index.html
delete mode 100644 static/img/pinestem.png
delete mode 100644 static/img/powerpath.jpg
create mode 100644 static/resume.pdf
create mode 100644 themes/hugo-coder/.editorconfig
create mode 100644 themes/hugo-coder/.gitignore
create mode 100644 themes/hugo-coder/LICENSE.md
create mode 100644 themes/hugo-coder/Makefile
create mode 100644 themes/hugo-coder/README.md
create mode 100644 themes/hugo-coder/archetypes/default.md
create mode 100644 themes/hugo-coder/archetypes/posts.md
create mode 100644 themes/hugo-coder/exampleSite/config.toml
create mode 100644 themes/hugo-coder/exampleSite/content/about.md
create mode 100644 themes/hugo-coder/exampleSite/content/posts/creating-a-new-theme.md
create mode 100644 themes/hugo-coder/exampleSite/content/posts/goisforlovers.md
create mode 100644 themes/hugo-coder/exampleSite/content/posts/hugoisforlovers.md
create mode 100644 themes/hugo-coder/exampleSite/content/posts/migrate-from-jekyll.md
create mode 100644 themes/hugo-coder/exampleSite/content/posts/theme-demo.md
create mode 100644 themes/hugo-coder/exampleSite/layouts/.gitkeep
create mode 100644 themes/hugo-coder/exampleSite/static/.gitkeep
create mode 100644 themes/hugo-coder/images/screenshot.png
create mode 100644 themes/hugo-coder/images/tn.png
create mode 100644 themes/hugo-coder/layouts/404.html
create mode 100644 themes/hugo-coder/layouts/_default/baseof.html
create mode 100644 themes/hugo-coder/layouts/_default/list.html
create mode 100644 themes/hugo-coder/layouts/_default/single.html
create mode 100644 themes/hugo-coder/layouts/index.html
create mode 100644 themes/hugo-coder/layouts/partials/404.html
create mode 100644 themes/hugo-coder/layouts/partials/footer.html
create mode 100644 themes/hugo-coder/layouts/partials/header.html
create mode 100644 themes/hugo-coder/layouts/partials/home.html
create mode 100644 themes/hugo-coder/layouts/partials/list.html
create mode 100644 themes/hugo-coder/layouts/partials/page.html
create mode 100644 themes/hugo-coder/layouts/partials/pagination.html
create mode 100644 themes/hugo-coder/layouts/partials/post.html
create mode 100644 themes/hugo-coder/layouts/posts/single.html
create mode 100644 themes/hugo-coder/static/css/style.min.css
create mode 100644 themes/hugo-coder/static/images/favicon-16x16.png
create mode 100644 themes/hugo-coder/static/images/favicon-32x32.png
create mode 100644 themes/hugo-coder/static/less/style.less
create mode 100644 themes/hugo-coder/theme.toml
delete mode 160000 themes/hugo-resume
diff --git a/config.toml b/config.toml
index 5ba7b9b..26440c8 100644
--- a/config.toml
+++ b/config.toml
@@ -1,61 +1,42 @@
-baseURL = "https://example.com/"
-languageCode = "en-us"
-title = "Eddie Webb"
-theme = "hugo-resume"
-
-[taxonomies]
- tag = "tags"
-
+baseURL = "https://thecurlybraces.com"
+languagecode = "en-us"
+title = "Abijeet Patro"
+theme = "hugo-coder"
[params]
- firstName = "Abijeet"
- lastName = "Patro"
- profileImage = "img/TechChat.png"
- phone = "91-949-405-9105"
- contactNote = "Software Engineer and Open Source Enthusiast"
- address = "Hyderabad, India"
- email = "abijeetpatro@gmail.com"
- description = "Open source enthusiast and full stack software engineer with experience in designing scalable platfroms on the IoT, Healthcare, Sports, Project management and Automobile insurance domain."
- favicon = "images/favicon.ico"
- # what sections
- showSkills = true
- showProjects = true
- showOpenSource = true
- showPublications = false
- showExperience = true
- showEducation = true
- showQr = true
+ author = "Abijeet Patro"
+ description = "Abijeet's personal website"
+ keywords = "website,developer,personal"
+ info = "Full Stack Developer"
+ hideCredits = false
+ hideCopyright = false
- # do you want to show git hash on page footer and link to repo? Add commit prefix here.
- gitCommitPrefix = "https://github.com/eddiewebb/json-resume/commit/"
-
-
-[[params.handles]]
- name = "LinkedIn"
- link = "https://www.linkedin.com/in/edwardwebb/"
-
-
-[[params.handles]]
+[[params.social]]
+ name = "Github"
+ weight = 1
+ url = "https://github.com/abijeet/"
+[[params.social]]
name = "Twitter"
- link = "https://twitter.com/edwardawebb/"
-
-[[params.handles]]
- name = "GitHub"
- link = "https://github.com/eddiewebb/"
-
-[[params.handles]]
- name = "Blog"
- link = "https://blog.thecurlybraces.com"
- icon = "rss"
-
-[[params.handles]]
+ weight = 2
+ url = "https://twitter.com/abijeetpatro/"
+[[params.social]]
+ name = "LinkedIn"
+ weight = 3
+ url = "https://www.linkedin.com/in/abijeet-patro/"
+[[params.social]]
name = "StackOverflow"
- link = "https://stackoverflow.com/users/story/82880"
- icon = "stack-overflow"
+ weight = 4
+ url = "https://stackoverflow.com/users/903324/abijeet-patro?tab=profile"
+[[params.social]]
+ name = "Resume"
+ weight = 5
+ url = "/resume.pdf"
-# [params.google.analytics]
-# trackerID = "UA-28342049-2"
-
-
-[outputs]
-home = ["HTML", "JSON"]
\ No newline at end of file
+[[menu.main]]
+ name = "Blog"
+ weight = 1
+ url = "https://blog.thecurlybraces.com"
+[[menu.main]]
+ name = "About"
+ weight = 2
+ url = "https://blog.thecurlybraces.com/about/"
diff --git a/content/_index.md b/content/_index.md
deleted file mode 100644
index f78fc51..0000000
--- a/content/_index.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Home"
-date: 2018-02-10T18:56:13-05:00
-sitemap:
- priority : 1.0
-
-outputs:
-- html
-- rss
-- json
----
-Open source enthusiast and full stack software engineer with experience in designing scalable platfroms on the IoT, healthcare, sports, project management and automobile insurance domain.
\ No newline at end of file
diff --git a/content/projects/_index.md b/content/projects/_index.md
deleted file mode 100644
index 1544c28..0000000
--- a/content/projects/_index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "Projects"
-sitemap:
- priority : 0.9
----
-
This section contains projects created and contbriuted to by Eddie. Everything listed is an open source effort, the distinction is only my role as owner or contributor.
\ No newline at end of file
diff --git a/content/projects/contributions/_index.md b/content/projects/contributions/_index.md
deleted file mode 100644
index b1fbbc1..0000000
--- a/content/projects/contributions/_index.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: "Open Source Contributions"
-sitemap:
- priority : 0.5
-weight: 20
----
-A collection of efforts to which I contributed, but did not create. Contributing back to Open Source projects is a strong passion of mine, and requires a considerate approach to learn norms, standards and approach for each community for a successful merge!
diff --git a/content/projects/creations/_index.md b/content/projects/creations/_index.md
deleted file mode 100644
index fbc7abf..0000000
--- a/content/projects/creations/_index.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: "Work Projects"
-sitemap:
- priority : 0.5
-weight: 10
----
-This section lists projects that I have worked on as a part of my day job.
diff --git a/content/projects/creations/baseline-telematics.md b/content/projects/creations/baseline-telematics.md
deleted file mode 100644
index b41246f..0000000
--- a/content/projects/creations/baseline-telematics.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Baseline Telematics"
-date: 2018-04-22T09:14:29+05:30
-description: "SimpliCity is a 100% web-based solution that provides comprehensive management of Public Works operations all year long, including work order management and municipal assets inspections (often mandated by law). I was involved in handling large data imports when new clients migrated to our system and needed their existing data on the SimpliCity platform."
-tags: ["PHP", "CakePHP", "RabbitMQ", "MariaDB", "Microservices", "Lua"]
-image: ""
-link: "http://simplicity.operasoft.ca/"
-weight: 500
-sitemap:
- priority : 0.
----
-
diff --git a/content/projects/creations/pinestem.md b/content/projects/creations/pinestem.md
deleted file mode 100644
index 9dcc946..0000000
--- a/content/projects/creations/pinestem.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: "PineStem"
-date: 2018-04-22T09:14:29+05:30
-description: "PineStem is a project management tool that has been build with an Agile philosophy in mind. It has an integrated bug tracking tool, kanban board, billing system and various reports that provide insights into an employee's performance."
-tags: ["AngularJS", "Material Design", "MariaDB", "NSQ", "Gitlab CI / CD", "Microservices", "Profiling"]
-image: "/img/pinestem.png"
-link: "https://pinestem.com"
-weight: 500,
-featured: true
-sitemap:
- priority : 0.
----
-PineStem is a project management tool that has been build with an Agile philosophy in mind. It has an integrated bug tracking tool, kanban board, billing system and various reports that provide insights into an employee's performance.
-
-I was responsible to provide technical guidance on the project. Following are the some of the key areas that I worked on,
-
-
- - Set up the base for the frontend code. Took into account the size of the project, functionalities needed and recommended guidelines when structuring the project.
- - Provided directions to break down the monolithic backend codebase into smaller microservices.
- - Approved and oversaw the integration of any new plugin that were needed.
- - Architechted the module based ACL system on both the frontend and the backend.
- - Designed the system that allows users to select their own timezone and date formats.
- - Designed the backend notification system through which all user notifications are sent, based on their preferences.
- - Analyzed and improved frontend portal performance specifically on Internet Explorer and Edge.
- - DevOps - Performed the productions server setup and laid down instructions to be followed for future deployments.
-
-