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

github.com/uicardiodev/hugo-uilite.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArvind <arvind@zonic.io>2018-09-21 15:33:18 +0300
committerArvind <arvind@zonic.io>2018-09-21 15:33:18 +0300
commit68f5c9fb7b59ea387973eb66eb00ff4760818e81 (patch)
tree8f672df297c55b3ab560591f9c30507d1fab3389
parent1cc8252d0d84982e1e3bb04a24bbb82aaa50b628 (diff)
add required folders for hugo theme directory
-rw-r--r--README.md2
-rw-r--r--archetypes/default.md6
-rw-r--r--exampleSite/config.toml4
-rw-r--r--exampleSite/data/config.json4
-rw-r--r--exampleSite/data/experience.json15
-rw-r--r--exampleSite/data/services.json15
-rw-r--r--exampleSite/data/sidebar.json6
-rw-r--r--exampleSite/data/skills.json9
-rw-r--r--exampleSite/data/social.json6
9 files changed, 66 insertions, 1 deletions
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/<yourusername>",
+ "instagram" : "https://instagram.com/<yourusername>",
+ "dribbble" : "https://dribbble.com/<yourusername>",
+ "behance" : "https://behnace.com/<yourusername>"
+} \ No newline at end of file