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

github.com/themefisher/twenty-twenty-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsomrat <monnaf37@gmail.com>2020-04-26 12:25:02 +0300
committersomrat <monnaf37@gmail.com>2020-04-26 12:25:02 +0300
commitc7e0ff15a62ba986ae9a1c9361aaa7614c66c964 (patch)
tree5b110ebeed454d3270dd6b8801b7d398f3de985d /exampleSite
initialize template
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/.forestry/settings.yml97
-rw-r--r--exampleSite/config.toml117
-rw-r--r--exampleSite/content/about/_index.md9
-rw-r--r--exampleSite/content/blog/_index.md7
-rw-r--r--exampleSite/content/blog/post-1.md18
-rw-r--r--exampleSite/content/blog/post-2.md18
-rw-r--r--exampleSite/content/blog/post-3.md18
-rw-r--r--exampleSite/content/blog/post-4.md18
-rw-r--r--exampleSite/content/contact/_index.md10
-rw-r--r--exampleSite/content/sample-page/_index.md28
-rw-r--r--exampleSite/content/search/_index.md7
-rw-r--r--exampleSite/static/images/2020-landscape-1-2.pngbin0 -> 1211 bytes
-rw-r--r--exampleSite/static/images/2020-landscape-2.pngbin0 -> 6248 bytes
-rw-r--r--exampleSite/static/images/2020-square-1.pngbin0 -> 4201 bytes
-rw-r--r--exampleSite/static/images/2020-square-2.pngbin0 -> 3366 bytes
-rw-r--r--exampleSite/static/images/2020-three-quarters-1.pngbin0 -> 2333 bytes
-rw-r--r--exampleSite/static/images/2020-three-quarters-2.pngbin0 -> 2708 bytes
-rw-r--r--exampleSite/static/images/2020-three-quarters-3.pngbin0 -> 26106 bytes
-rw-r--r--exampleSite/static/images/2020-three-quarters-4.pngbin0 -> 2185 bytes
19 files changed, 347 insertions, 0 deletions
diff --git a/exampleSite/.forestry/settings.yml b/exampleSite/.forestry/settings.yml
new file mode 100644
index 0000000..877fd97
--- /dev/null
+++ b/exampleSite/.forestry/settings.yml
@@ -0,0 +1,97 @@
+---
+new_page_extension: md
+auto_deploy: false
+admin_path: ''
+webhook_url:
+sections:
+- type: heading
+ label: Blog Post
+- type: directory
+ path: exampleSite/content/english/post
+ label: Post (en)
+ create: documents
+ match: "**/*"
+ templates:
+ - post
+- type: directory
+ path: exampleSite/content/french/post
+ label: Post (fr)
+ create: documents
+ match: "**/*"
+ templates:
+ - post
+- type: heading
+ label: Others Pages
+- type: directory
+ path: exampleSite/content/english/about
+ label: About (en)
+ create: none
+ match: "*"
+- type: directory
+ path: exampleSite/content/french/about
+ label: About (fr)
+ create: none
+ match: "*"
+- type: directory
+ path: exampleSite/content/english/contact
+ label: Contact (en)
+ create: none
+ match: "*"
+- type: directory
+ path: exampleSite/content/french/contact
+ label: Contact (fr)
+ create: none
+ match: "*"
+- type: directory
+ path: exampleSite/content/english/privacy-policy
+ label: Privacy Policy (en)
+ create: none
+ match: "*"
+- type: directory
+ path: exampleSite/content/french/privacy-policy
+ label: Privacy Policy (fr)
+ create: none
+ match: "*"
+- type: directory
+ path: exampleSite/content/english
+ label: All Pages (en)
+ create: all
+ match: "**/*"
+ templates:
+ - new-page
+- type: directory
+ path: exampleSite/content/french
+ label: All Pages (fr)
+ create: all
+ match: "**/*"
+ templates:
+ - new-page
+- type: heading
+ label: Configuration
+- type: directory
+ path: exampleSite
+ label: Configuration
+ create: all
+ match: "*.toml"
+ new_doc_ext: toml
+- type: directory
+ path: exampleSite/i18n
+ label: i18n translations
+ create: documents
+ match: "**/*"
+upload_dir: exampleSite/static/images
+public_path: "/images"
+front_matter_path: ''
+use_front_matter_path: false
+file_template: ":filename:"
+build:
+ preview_env:
+ - HUGO_ENV=staging
+ - HUGO_VERSION=0.58.2
+ preview_output_directory: public
+ preview_docker_image: forestryio/hugo:latest
+ mount_path: "/srv"
+ working_dir: "/srv"
+ instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk
+ -d public
+version: 0.69.0
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..639027c
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,117 @@
+######################## default configuration ####################
+baseURL = "https://examplesite.com"
+title = "Wordpress 2020"
+theme = "wp2020"
+languageName = "En"
+languageCode = "en-us"
+# post pagination
+paginate = "6"
+# post excerpt
+summaryLength = "10"
+# disqus short name
+disqusShortname = "" # get your shortname form here : https://disqus.com
+# disable language
+disableLanguages = [] # desable language from here
+# google analytics
+googleAnalytics = "UA-123-45"
+
+
+
+############################## Output ###############################
+[outputs]
+home = ["HTML", "RSS", "JSON"]
+
+# unsafe html
+[markup.goldmark.renderer]
+unsafe = true
+
+[taxonomies]
+category = "categories"
+tag = "tags"
+author = "author"
+
+############################## navigation ###############################
+
+# main menu
+[[menu.main]]
+name = "Home"
+URL = "/"
+weight = 1
+
+[[menu.main]]
+name = "About"
+URL = "about"
+weight = 2
+
+[[menu.main]]
+name = "Blog"
+URL = "blog"
+weight = 3
+
+[[menu.main]]
+name = "Contact"
+URL = "contact"
+weight = 4
+
+[[menu.main]]
+name = "Sample Page"
+URL = "sample-page"
+weight = 5
+
+# only desktop menu
+[[menu.desktop]]
+name = "Contact"
+URL = "contact"
+weight = 1
+
+
+#################### default parameters ################################
+[params]
+# Meta data
+description = "This is meta description"
+author = "Themefisher"
+
+
+# banner
+[params.banner]
+heading = "The New UMoMA Opens its Doors"
+image = "images/2020-landscape-1-2.png"
+
+# blog
+[params.blog]
+heading = "The premier destination for modern art in Northern Sweden. Open from 10 AM to 6 PM every day during the summer months."
+
+# call to action
+[params.call_to_action]
+enable = true
+title = "Become a Member and Get Exclusive Offers!"
+content = "Members get access to exclusive exhibits and sales. Our memberships cost $99.99 and are billed annually."
+button_label = "Join the Club"
+button_url = "https://gethugothemes.com/hugo-blog-themes/"
+
+# gallery
+[params.gallery]
+enable = true
+
+ [[params.gallery.gallery_item ]]
+ image = "images/2020-square-2.png"
+
+ [[params.gallery.gallery_item ]]
+ image = "images/2020-square-1.png"
+
+
+# footer
+[params.footer]
+title = "About This Site"
+content = "This may be a good place to introduce yourself and your site or include some credits."
+address = "123 Main Street <br> New York, NY 10001"
+hours = "Monday–Friday: 9:00AM–5:00PM <br> Saturday & Sunday: 11:00AM–3:00PM"
+copyright = "Copyright &copy; 2020 a hugo theme by [themefisher](https://themefisher.com)"
+
+############################# social site ########################
+[params.social]
+yelp = "#"
+facebook = "#"
+twitter = "#"
+instagram = "#"
+email = "#" \ No newline at end of file
diff --git a/exampleSite/content/about/_index.md b/exampleSite/content/about/_index.md
new file mode 100644
index 0000000..2e15fa9
--- /dev/null
+++ b/exampleSite/content/about/_index.md
@@ -0,0 +1,9 @@
+---
+title: "About"
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+You might be an artist who would like to introduce yourself and your work here or maybe you&rsquo;re a business with a mission to describe. \ No newline at end of file
diff --git a/exampleSite/content/blog/_index.md b/exampleSite/content/blog/_index.md
new file mode 100644
index 0000000..145cba9
--- /dev/null
+++ b/exampleSite/content/blog/_index.md
@@ -0,0 +1,7 @@
+---
+title: "Blog"
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+--- \ No newline at end of file
diff --git a/exampleSite/content/blog/post-1.md b/exampleSite/content/blog/post-1.md
new file mode 100644
index 0000000..2580ee4
--- /dev/null
+++ b/exampleSite/content/blog/post-1.md
@@ -0,0 +1,18 @@
+---
+title: "Works and Days"
+date: 2020-03-14T15:40:24+06:00
+image : "images/2020-three-quarters-1.png"
+# author
+author : ["Admin"]
+# categories
+categories: ["Working days"]
+tags: ["work", "day"]
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book. \ No newline at end of file
diff --git a/exampleSite/content/blog/post-2.md b/exampleSite/content/blog/post-2.md
new file mode 100644
index 0000000..e3bcab7
--- /dev/null
+++ b/exampleSite/content/blog/post-2.md
@@ -0,0 +1,18 @@
+---
+title: "Theatre of Operations"
+date: 2020-03-14T15:40:24+06:00
+image : "images/2020-three-quarters-3.png"
+# author
+author : ["Admin"]
+# categories
+categories: ["operations"]
+tage: ["tags"]
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book. \ No newline at end of file
diff --git a/exampleSite/content/blog/post-3.md b/exampleSite/content/blog/post-3.md
new file mode 100644
index 0000000..084bc35
--- /dev/null
+++ b/exampleSite/content/blog/post-3.md
@@ -0,0 +1,18 @@
+---
+title: "The Life I Deserve"
+date: 2020-03-14T15:40:24+06:00
+image : "images/2020-three-quarters-2.png"
+# author
+author : ["Admin"]
+# categories
+categories: ["lifestyle"]
+tags: ["lifestyle" , "fashion"]
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book. \ No newline at end of file
diff --git a/exampleSite/content/blog/post-4.md b/exampleSite/content/blog/post-4.md
new file mode 100644
index 0000000..33a9448
--- /dev/null
+++ b/exampleSite/content/blog/post-4.md
@@ -0,0 +1,18 @@
+---
+title: "From Signac to Matisse"
+date: 2020-03-14T15:40:24+06:00
+image : "images/2020-three-quarters-4.png"
+# author
+author : ["Admin"]
+# categories
+categories: ["tour"]
+tags: ["tour","visit"]
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
+
+Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book. \ No newline at end of file
diff --git a/exampleSite/content/contact/_index.md b/exampleSite/content/contact/_index.md
new file mode 100644
index 0000000..d7f31fb
--- /dev/null
+++ b/exampleSite/content/contact/_index.md
@@ -0,0 +1,10 @@
+---
+title: "Contact"
+bg_image: "images/2020-landscape-2.png"
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form. \ No newline at end of file
diff --git a/exampleSite/content/sample-page/_index.md b/exampleSite/content/sample-page/_index.md
new file mode 100644
index 0000000..27a69c6
--- /dev/null
+++ b/exampleSite/content/sample-page/_index.md
@@ -0,0 +1,28 @@
+---
+title: "Sample Page"
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+---
+
+<p>This is an example page. It&#8217;s different from a blog post because it will stay in one place and will show
+up in your site navigation (in most themes). Most people start with an About page that introduces them to
+potential site visitors. It might say something like this:</p>
+
+<blockquote class="wp-block-quote">
+<p>Hi there! I&#8217;m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los
+Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin&#8217; caught in the rain.)
+</p>
+</blockquote>
+
+<p>&#8230;or something like this:</p>
+
+<blockquote class="wp-block-quote">
+<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever
+since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the
+Gotham community.</p>
+</blockquote>
+
+<p>As a new WordPress user, you should go to your dashboard to delete this
+page and create new pages for your content. Have fun!</p> \ No newline at end of file
diff --git a/exampleSite/content/search/_index.md b/exampleSite/content/search/_index.md
new file mode 100644
index 0000000..416c34d
--- /dev/null
+++ b/exampleSite/content/search/_index.md
@@ -0,0 +1,7 @@
+---
+title: "Search"
+# meta description
+description: "This is meta description"
+# save as draft
+draft: false
+--- \ No newline at end of file
diff --git a/exampleSite/static/images/2020-landscape-1-2.png b/exampleSite/static/images/2020-landscape-1-2.png
new file mode 100644
index 0000000..ab55b91
--- /dev/null
+++ b/exampleSite/static/images/2020-landscape-1-2.png
Binary files differ
diff --git a/exampleSite/static/images/2020-landscape-2.png b/exampleSite/static/images/2020-landscape-2.png
new file mode 100644
index 0000000..844d377
--- /dev/null
+++ b/exampleSite/static/images/2020-landscape-2.png
Binary files differ
diff --git a/exampleSite/static/images/2020-square-1.png b/exampleSite/static/images/2020-square-1.png
new file mode 100644
index 0000000..3acd76b
--- /dev/null
+++ b/exampleSite/static/images/2020-square-1.png
Binary files differ
diff --git a/exampleSite/static/images/2020-square-2.png b/exampleSite/static/images/2020-square-2.png
new file mode 100644
index 0000000..e1ab8f8
--- /dev/null
+++ b/exampleSite/static/images/2020-square-2.png
Binary files differ
diff --git a/exampleSite/static/images/2020-three-quarters-1.png b/exampleSite/static/images/2020-three-quarters-1.png
new file mode 100644
index 0000000..d02d917
--- /dev/null
+++ b/exampleSite/static/images/2020-three-quarters-1.png
Binary files differ
diff --git a/exampleSite/static/images/2020-three-quarters-2.png b/exampleSite/static/images/2020-three-quarters-2.png
new file mode 100644
index 0000000..6b1dd1a
--- /dev/null
+++ b/exampleSite/static/images/2020-three-quarters-2.png
Binary files differ
diff --git a/exampleSite/static/images/2020-three-quarters-3.png b/exampleSite/static/images/2020-three-quarters-3.png
new file mode 100644
index 0000000..3675b55
--- /dev/null
+++ b/exampleSite/static/images/2020-three-quarters-3.png
Binary files differ
diff --git a/exampleSite/static/images/2020-three-quarters-4.png b/exampleSite/static/images/2020-three-quarters-4.png
new file mode 100644
index 0000000..aa7c7f0
--- /dev/null
+++ b/exampleSite/static/images/2020-three-quarters-4.png
Binary files differ