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

github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@users.noreply.github.com>2019-03-03 07:04:58 +0300
committerGitHub <noreply@github.com>2019-03-03 07:04:58 +0300
commitb27ff14badc2f6fc9d13626651e8274212e447c1 (patch)
treea9687a7d60016d97c6bbccca82959afeb806cd1a
parent1426ca4851ec67c3828a9da0ba020b33b308f8b4 (diff)
Add files via upload
-rw-r--r--exampleSite/content/posts/post (1).md24
-rw-r--r--exampleSite/content/posts/post (2).md10
-rw-r--r--exampleSite/content/posts/post (3).md10
-rw-r--r--exampleSite/content/posts/post (4).md10
-rw-r--r--exampleSite/content/posts/post (5).md10
-rw-r--r--exampleSite/content/posts/post (6).md10
6 files changed, 74 insertions, 0 deletions
diff --git a/exampleSite/content/posts/post (1).md b/exampleSite/content/posts/post (1).md
new file mode 100644
index 0000000..4a0cdfc
--- /dev/null
+++ b/exampleSite/content/posts/post (1).md
@@ -0,0 +1,24 @@
++++
+title = "Create new hugo theme"
+date = "2018-12-10"
+tags = ["tutorial"]
+categories = ["Hugo"]
+description = "A brief summary for the post 1. And this is slightly longer than the others. And this one also has three sentences. Nevermind, this one actually has four sentences."
+images = ["images/projects/cargill_500.jpg"]
++++
+
+The `hugo new theme` command will scaffold the beginnings of a new theme for you to get you on your way.
+
+If you’re creating a theme with plans to share it on the Hugo Themes website please note the following: - If using inline styles you will need to use absolute URLs, for the linked assets to be served properly, e.g. `<div style="background: url('{{ "images/background.jpg" | absURL }}')">` - Make sure not to use a forward slash `/` in the beginning of a `URL`, because it will point to the host root. Your theme’s demo will be available in a subdirectory of the Hugo website and in this scenario Hugo will not generate the correct `URL` for theme assets. - If using external CSS and JS from a CDN, make sure to load these assets over `https`. Please do not use relative protocol URLs in your theme’s templates.
+
+Hugo can initialize a new blank theme directory within your existing themes using the hugo new command:
+
+```
+hugo new theme [name]
+```
+
+An image is here.
+
+{{< figure src="/images/post1/post1_skyline.jpeg" caption="Awesome Caption *Here*" >}}
+
+If you’re creating a theme with plans to share it on the Hugo Themes website please note the following: - If using inline styles you will need to use absolute URLs, for the linked assets to be served properly, e.g. `<div style="background: url('{{ "images/background.jpg" | absURL }}')">` - Make sure not to use a forward slash `/` in the beginning of a `URL`, because it will point to the host root. Your theme’s demo will be available in a subdirectory of the Hugo website and in this scenario Hugo will not generate the correct `URL` for theme assets. - If using external CSS and JS from a CDN, make sure to load these assets over `https`. Please do not use relative protocol URLs in your theme’s templates. \ No newline at end of file
diff --git a/exampleSite/content/posts/post (2).md b/exampleSite/content/posts/post (2).md
new file mode 100644
index 0000000..3327452
--- /dev/null
+++ b/exampleSite/content/posts/post (2).md
@@ -0,0 +1,10 @@
++++
+title = "Title of the post 2"
+date = "2018-12-11"
+tags = ["random1", "random2"]
+categories = ["Category 11"]
+description = "A brief summary for the post 2"
+images = ["images/projects/cargill_500.jpg"]
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \ No newline at end of file
diff --git a/exampleSite/content/posts/post (3).md b/exampleSite/content/posts/post (3).md
new file mode 100644
index 0000000..85742df
--- /dev/null
+++ b/exampleSite/content/posts/post (3).md
@@ -0,0 +1,10 @@
++++
+title = "Title of the post 3"
+date = "2018-12-12"
+tags = ["random"]
+categories = ["Category 1"]
+description = "A brief summary for the post 3"
+images = ["images/projects/cargill_500.jpg"]
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \ No newline at end of file
diff --git a/exampleSite/content/posts/post (4).md b/exampleSite/content/posts/post (4).md
new file mode 100644
index 0000000..3c78fc2
--- /dev/null
+++ b/exampleSite/content/posts/post (4).md
@@ -0,0 +1,10 @@
++++
+title = "Title of the post 4"
+date = "2018-11-10"
+tags = ["random"]
+categories = ["Category 1"]
+description = "A brief summary for the post 4"
+images = ["images/projects/cargill_500.jpg"]
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \ No newline at end of file
diff --git a/exampleSite/content/posts/post (5).md b/exampleSite/content/posts/post (5).md
new file mode 100644
index 0000000..377ac54
--- /dev/null
+++ b/exampleSite/content/posts/post (5).md
@@ -0,0 +1,10 @@
++++
+title = "Title of the post 5"
+date = "2018-10-10"
+tags = ["other"]
+categories = ["Category 11"]
+description = "A brief summary for the post 5"
+images = ["images/projects/cargill_500.jpg"]
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \ No newline at end of file
diff --git a/exampleSite/content/posts/post (6).md b/exampleSite/content/posts/post (6).md
new file mode 100644
index 0000000..886e183
--- /dev/null
+++ b/exampleSite/content/posts/post (6).md
@@ -0,0 +1,10 @@
++++
+title = "Title of the post 6"
+date = "2018-12-15"
+tags = ["other"]
+categories = ["Category 11"]
+description = "A brief summary for the post 6."
+images = ["images/projects/cargill_500.jpg"]
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \ No newline at end of file