From 68f5c9fb7b59ea387973eb66eb00ff4760818e81 Mon Sep 17 00:00:00 2001 From: Arvind Date: Fri, 21 Sep 2018 18:03:18 +0530 Subject: add required folders for hugo theme directory --- README.md | 2 +- archetypes/default.md | 6 ++++++ exampleSite/config.toml | 4 ++++ exampleSite/data/config.json | 4 ++++ exampleSite/data/experience.json | 15 +++++++++++++++ exampleSite/data/services.json | 15 +++++++++++++++ exampleSite/data/sidebar.json | 6 ++++++ exampleSite/data/skills.json | 9 +++++++++ exampleSite/data/social.json | 6 ++++++ 9 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 archetypes/default.md create mode 100644 exampleSite/config.toml create mode 100644 exampleSite/data/config.json create mode 100644 exampleSite/data/experience.json create mode 100644 exampleSite/data/services.json create mode 100644 exampleSite/data/sidebar.json create mode 100644 exampleSite/data/skills.json create mode 100644 exampleSite/data/social.json diff --git a/README.md b/README.md index 05ec972..35405ea 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ A theme designed for developers and designers who can showcase thier slills and work easily -Demo : [Demo](https://demo.uicard.io/hugo-uilite-free) +Demo : [https://demo.uicard.io/hugo-uilite-free](https://demo.uicard.io/hugo-uilite-free) diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..ab9b695 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,4 @@ +baseURL = "https://demo.uicard.io/hugo-uilite-free/" +languageCode = "en-us" +title = "Valentina" +theme = "uilite" \ No newline at end of file diff --git a/exampleSite/data/config.json b/exampleSite/data/config.json new file mode 100644 index 0000000..5e30375 --- /dev/null +++ b/exampleSite/data/config.json @@ -0,0 +1,4 @@ +{ + "author" : "Arvind Singh", + "email" : "youremailhere@gmail.com" +} \ No newline at end of file diff --git a/exampleSite/data/experience.json b/exampleSite/data/experience.json new file mode 100644 index 0000000..dfb38d2 --- /dev/null +++ b/exampleSite/data/experience.json @@ -0,0 +1,15 @@ +{ + "title" : "Experience", + "experience" : [ + { + "timeperiod" : "May 2017 - Nov 2017", + "company" : "Uber", + "description" : "Nunc sapien nisi, maximus eleifend hendrerit sit amet, rutrum vel diam. Duis quam nibh, tincidunt eget nunc nec, suscipit pretium dolor. " + }, + { + "timeperiod" : "Nov 2017 - Present", + "company" : "Google", + "description" : "Nunc sapien nisi, maximus eleifend hendrerit sit amet, rutrum vel diam. Duis quam nibh, tincidunt eget nunc nec, suscipit pretium dolor. " + } + ] +} \ No newline at end of file diff --git a/exampleSite/data/services.json b/exampleSite/data/services.json new file mode 100644 index 0000000..7dd201a --- /dev/null +++ b/exampleSite/data/services.json @@ -0,0 +1,15 @@ +{ + "title" : "Services", + "services" : [ + { + "icon" : "pencil-ruler", + "title" : "Logo Design", + "description" : "Nunc sapien nisi, maximus eleifend hendrerit sit amet, rutrum vel diam. Duis quam nibh, tincidunt eget nunc nec, suscipit pretium dolor. " + }, + { + "icon" : "pen-nib", + "title" : "Graphics Design", + "description" : "Nunc sapien nisi, maximus eleifend hendrerit sit amet, rutrum vel diam. Duis quam nibh, tincidunt eget nunc nec, suscipit pretium dolor. " + } + ] +} \ No newline at end of file diff --git a/exampleSite/data/sidebar.json b/exampleSite/data/sidebar.json new file mode 100644 index 0000000..e40de09 --- /dev/null +++ b/exampleSite/data/sidebar.json @@ -0,0 +1,6 @@ +{ + "title" : "hey world, i'm", + "highlightedText" : "valentina", + "description" : "A graphics designer, based in Germany", + "displayPicture" : "sim.jpg" +} \ No newline at end of file diff --git a/exampleSite/data/skills.json b/exampleSite/data/skills.json new file mode 100644 index 0000000..af51803 --- /dev/null +++ b/exampleSite/data/skills.json @@ -0,0 +1,9 @@ +{ + "title" : "Skills", + "skills" : { + "Sketch" : "90", + "Adobe XD" : "80", + "Illustrator" : "65", + "Photoshop" : "97" + } +} \ No newline at end of file diff --git a/exampleSite/data/social.json b/exampleSite/data/social.json new file mode 100644 index 0000000..c1e2a93 --- /dev/null +++ b/exampleSite/data/social.json @@ -0,0 +1,6 @@ +{ + "facebook" : "https://facebook.com/", + "instagram" : "https://instagram.com/", + "dribbble" : "https://dribbble.com/", + "behance" : "https://behnace.com/" +} \ No newline at end of file -- cgit v1.2.3