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

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgurusabarish <gurusabarisha@gmail.com>2021-04-04 06:53:27 +0300
committergurusabarish <gurusabarisha@gmail.com>2021-04-04 06:53:27 +0300
commitd01692063b11d3ea2aeb314540011d05473d7028 (patch)
tree3671a3975d4dc50d19047f1132bf4935d7ef7312
parent816afa6e683a2eea9d6a3ec12addf4a908c0ba1a (diff)
added exampleSite
-rw-r--r--exampleSite/config.yaml69
-rw-r--r--exampleSite/content/blog/emoji-support.md34
-rw-r--r--exampleSite/content/blog/markdown-syntax.md143
-rw-r--r--exampleSite/content/blog/placeholder-text.md40
-rw-r--r--exampleSite/content/blog/rich-content.md51
-rw-r--r--exampleSite/static/images/fav.pngbin0 -> 16181 bytes
-rw-r--r--exampleSite/static/images/gurusabarish.webpbin0 -> 6830 bytes
-rw-r--r--exampleSite/static/images/hugo.pngbin0 -> 7993 bytes
-rw-r--r--exampleSite/static/images/profile.webpbin0 -> 2278 bytes
-rw-r--r--netlifysite/config.yaml2
10 files changed, 338 insertions, 1 deletions
diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml
new file mode 100644
index 0000000..07d76e4
--- /dev/null
+++ b/exampleSite/config.yaml
@@ -0,0 +1,69 @@
+baseURL: "https://example.com"
+languageCode: "en-us"
+title: "Hugo-profile"
+
+googleanalytics: UA-xxxxxx-x
+disqusShortname:
+Paginate: 3
+
+markup:
+ goldmark:
+ renderer:
+ unsafe: true
+
+taxonomies:
+ tag: "tags"
+ category: "categories"
+
+enableEmoji: true
+params:
+ favicon: "/images/fav.png"
+ description: "A high performance hugo theme for personal portfolio and blog."
+ copyright: "2021"
+
+ # Navbar Menus
+ customMenus:
+ - name: "Blog"
+ Url: "/blog"
+
+ # social
+ socialicontop: false
+ socialiconfooter: true
+ name: "Gurusabarish"
+ github: "https://github.com/gurusabarish"
+ linkedin: "https://linkedin.com/in/gurusabarish"
+ twitter: "https://twitter.com/gurusabarishh"
+ instagram: "https://instagram.com/gurusabarishh"
+ facebook: "https://facebook.com"
+
+ # About
+ profile_image: "/images/gurusabarish.webp"
+ descripe_l1_person: "Hi, I'm Gurusabarish, a passionate web developer and ML engineer. I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly."
+ descripe_l2_person: ""
+
+ useresume: true
+ customname: ""
+ resumelink: ""
+
+ # Things I do
+ usedothings: true
+ Things:
+ - logo: fab fa-python
+ title: Python
+ description: I build something beautiful using Python.
+ #url: https://example.com
+
+ - logo: fas fa-robot
+ title: Machine learning
+ description: I train robust models for various tasks.
+ #url: https://guru.com
+
+ - logo: fab fa-html5
+ title: Things for web
+ description: I love to build things for web
+ #url: https://guru.com
+
+ #Description for seo. If you want to show description in your listing or single page, let's make it true
+ showdescription: false
+ tweet: true
+ recentposts: true
diff --git a/exampleSite/content/blog/emoji-support.md b/exampleSite/content/blog/emoji-support.md
new file mode 100644
index 0000000..f305bae
--- /dev/null
+++ b/exampleSite/content/blog/emoji-support.md
@@ -0,0 +1,34 @@
+---
+title: "Emoji Support"
+date: 2021-04-03T22:53:58+05:30
+draft: false
+github_link: "https://github.com/gurusabarish/hugo-profile"
+author: "Gurusabarish"
+tags:
+ - Emoji support
+bg_image: ""
+description: ""
+toc:
+---
+
+Emoji can be enabled in a Hugo project in a number of ways.
+
+The [emojify](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
+
+To enable emoji globally, set ```enableEmoji``` to ```true``` in your site’s [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+<hr>
+
+**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.
+
+```
+.emoji {
+ font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
+}
+```
+
+<br>
+
+[Markdown format for emoji](https://gist.github.com/rxaviers/7360908)
diff --git a/exampleSite/content/blog/markdown-syntax.md b/exampleSite/content/blog/markdown-syntax.md
new file mode 100644
index 0000000..d2746c1
--- /dev/null
+++ b/exampleSite/content/blog/markdown-syntax.md
@@ -0,0 +1,143 @@
+---
+title: "Markdown Syntax"
+date: 2021-04-03T23:29:21+05:30
+draft: false
+github_link: "https://github.com/gurusabarish/hugo-profile"
+author: "Gurusabarish"
+tags:
+ - Markdown syntax
+bg_image: ""
+description: ""
+toc:
+---
+
+This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
+<!--more-->
+
+## Headings
+
+The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+#### Blockquote without attribution
+
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+
+#### Blockquote with attribution
+
+
+> Don't communicate by sharing memory, share memory by communicating.</p>
+> — <cite>Rob Pike[^1]</cite>
+
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ | Name | Age |
+ | ----- | --- |
+ | Bob | 27 |
+ | Alice | 23 |
+
+#### Inline Markdown within tables
+
+| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
+| ------------------------ | -------------------------- | ----------------------------------- | ------ |
+| *italics* | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+``` html
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Example HTML5 Document</title>
+</head>
+<body>
+ <p>Test</p>
+</body>
+</html>
+```
+#### Code block indented with four spaces
+
+ <!DOCTYPE html>
+ <html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>Example HTML5 Document</title>
+ </head>
+ <body>
+ <p>Test</p>
+ </body>
+ </html>
+
+#### Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Example HTML5 Document</title>
+</head>
+<body>
+ <p>Test</p>
+</body>
+</html>
+{{< /highlight >}}
+
+## List Types
+
+#### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+#### Unordered List
+
+* List item
+* Another item
+* And another item
+
+#### Nested list
+
+* Item
+1. First Sub-item
+2. Second Sub-item
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
+
+H<sub>2</sub>O
+
+X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
+
+Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
+
+Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. \ No newline at end of file
diff --git a/exampleSite/content/blog/placeholder-text.md b/exampleSite/content/blog/placeholder-text.md
new file mode 100644
index 0000000..19012bf
--- /dev/null
+++ b/exampleSite/content/blog/placeholder-text.md
@@ -0,0 +1,40 @@
+---
+title: "Placeholder Text"
+date: 2021-04-03T22:41:10+05:30
+draft: false
+github_link: "https://github.com/gurusabarish/hugo-profile"
+author: "Gurusabarish"
+tags:
+ - Placeholder text
+bg_image: ""
+description: ""
+toc:
+---
+
+Lorem est tota propiore conpellat pectoribus de pectora summo.
+
+Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.
+
+ 1. Exierant elisi ambit vivere dedere
+ 2. Duce pollice
+ 3. Eris modo
+ 4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
+
+ 1. Comas hunc haec pietate fetum procerum dixit
+ 2. Post torum vates letum Tiresia
+ 3. Flumen querellas
+ 4. Arcanaque montibus omnes
+ 5. Quidem et
+
+# Vagus elidunt
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mane refeci capiebant unda mulcebat
+Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. Faces illo pepulere tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel mitis temploque vocatus, inque alis, oculos nomen non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides parte. \ No newline at end of file
diff --git a/exampleSite/content/blog/rich-content.md b/exampleSite/content/blog/rich-content.md
new file mode 100644
index 0000000..dbe56a8
--- /dev/null
+++ b/exampleSite/content/blog/rich-content.md
@@ -0,0 +1,51 @@
+---
+title: "Rich Content"
+date: 2021-04-03T19:53:33+05:30
+draft: false
+author: "Gurusabarish"
+tags:
+ - Rich content
+bg_image: ""
+description: ""
+toc:
+---
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+
+## Gist Simple Shortcode
+```
+{{</* gist spf13 7896402 "img.html" */>}}
+```
+<br>
+{{< gist spf13 7896402 "img.html" >}}
+<br>
+
+
+
+## Twitter Simple Shortcode
+```
+{{</* tweet 877500564405444608 */>}}
+```
+<br>
+{{< tweet 877500564405444608 >}}
+<br>
+
+
+
+## Vimeo Simple Shortcode
+```
+{{</* vimeo 146022717 */>}}
+```
+<br>
+{{< vimeo 146022717 >}}
+<br>
+
+
+
+## Youtube Simple Shortcode
+```
+{{</* youtube w7Ft2ymGmfc */>}}
+```
+<br>
+{{< youtube w7Ft2ymGmfc >}}
+<br>
diff --git a/exampleSite/static/images/fav.png b/exampleSite/static/images/fav.png
new file mode 100644
index 0000000..a1678da
--- /dev/null
+++ b/exampleSite/static/images/fav.png
Binary files differ
diff --git a/exampleSite/static/images/gurusabarish.webp b/exampleSite/static/images/gurusabarish.webp
new file mode 100644
index 0000000..a450e54
--- /dev/null
+++ b/exampleSite/static/images/gurusabarish.webp
Binary files differ
diff --git a/exampleSite/static/images/hugo.png b/exampleSite/static/images/hugo.png
new file mode 100644
index 0000000..50e23ce
--- /dev/null
+++ b/exampleSite/static/images/hugo.png
Binary files differ
diff --git a/exampleSite/static/images/profile.webp b/exampleSite/static/images/profile.webp
new file mode 100644
index 0000000..cea1a4d
--- /dev/null
+++ b/exampleSite/static/images/profile.webp
Binary files differ
diff --git a/netlifysite/config.yaml b/netlifysite/config.yaml
index 443269d..91d755f 100644
--- a/netlifysite/config.yaml
+++ b/netlifysite/config.yaml
@@ -1,4 +1,4 @@
-baseURL: "https://example.com"
+baseURL: "https://hugo-profile.netlify.app"
languageCode: "en-us"
title: "Hugo-profile"