Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ac0329f71 | |||
| 4ecce56055 | |||
| 544bfb587d | |||
| 4c185424bd | |||
| 65f21f3f57 | |||
| 71861099bf | |||
| 607e9c5d42 | |||
| 1aa68791d7 | |||
| 345341dd3b | |||
| 037ec98b51 | |||
| 6d50a08863 | |||
| f8a436d5c3 | |||
| 1b839c8803 | |||
| e533f2343b | |||
| ecbb186f72 | |||
| 9d0a34a1b8 | |||
| 5a26fe98e0 | |||
| f83ec679da | |||
| 0c415f9fcc | |||
| 56494102bd | |||
| 2f8bff817c | |||
| 1ad442ec67 | |||
| f1cda0d4e7 | |||
| e0d6e36e14 | |||
| 748a8e63b2 | |||
| 01f30297bd | |||
| 3eec48770f | |||
| 38e622a8c3 | |||
| 5af2b5a1b2 | |||
| c4d547c728 | |||
| 2725382348 | |||
| 8a2ff2bdce | |||
| 79f9f5d802 | |||
| ac5b482952 | |||
| a10ae3a5e3 | |||
| 4eb43528ac | |||
| aed0e699b6 | |||
| 1948fcbaa4 | |||
| fb55563b33 | |||
| ca269b37bf | |||
| c91f4b5a21 | |||
| 5224fc0efb |
@@ -0,0 +1 @@
|
|||||||
|
/public
|
||||||
@@ -1,23 +1,40 @@
|
|||||||
# hugo-profile
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
# hugo-profile (100% performance)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
A simple hugo theme for personal portfolio
|
A simple hugo theme for personal portfolio
|
||||||
|
|
||||||
## Performance of the website by web.dev
|
[](https://github.com/gurusabarish/hugo-profile/blob/master/LICENSE)
|
||||||
[check the performance of website](https://lighthouse-dot-webdotdevsite.appspot.com//lh/html?url=https%3A%2F%2Fhugo-profile.netlify.app%2F)
|
[](https://hugo-profile.netlify.app/)
|
||||||
|
[](https://app.netlify.com/sites/hugo-profile/deploys)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Queries
|
||||||
|
- If you have any queries or bugs, feel free to open an issue in [github](https://github.com/gurusabarish/hugo-profile/issues)
|
||||||
|
- Join our community for further updates: [hugo-profile](https://discord.gg/zgTajK4)
|
||||||
|
|
||||||
|
|
||||||
|
## Performance of the website (100)
|
||||||
|
- [Lighthouse performance (100)](https://lighthouse-dot-webdotdevsite.appspot.com//lh/html?url=https%3A%2F%2Fhugo-profile.netlify.app%2F)
|
||||||
|
- [Google pagespeed insights (100)](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fhugo-profile.netlify.app%2F&tab=desktop)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## Demo
|
## Demo
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Site: [Hugo-profile](https://hugo-profile.netlify.com)
|
### Demo Site: [Hugo-profile (100)](https://hugo-profile.netlify.app)
|
||||||
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
- High(100) performance
|
||||||
- Minimalist Design
|
- Minimalist Design
|
||||||
- Fully Responsive
|
- Fully Responsive
|
||||||
- Google Analytics Support
|
- Google Analytics Support
|
||||||
- Disqus Comment Support
|
- Disqus Comment Support
|
||||||
- Contact form using [Formpree](https://formspree.io/)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
@@ -32,33 +49,33 @@ A simple hugo theme for personal portfolio
|
|||||||
|
|
||||||
- Create your site if you haven't already
|
- Create your site if you haven't already
|
||||||
|
|
||||||
```console
|
```
|
||||||
hugo new site my-site -f=yaml
|
hugo new site my-site -f=yaml
|
||||||
cd my-site
|
cd my-site
|
||||||
git init
|
|
||||||
```
|
```
|
||||||
|
|
||||||
- Add the theme as git sub-module
|
- Add the theme as git clone
|
||||||
|
|
||||||
```console
|
```
|
||||||
git submodule add https://github.com/gurusabarish/hugo-profile.git themes/hugo-profile
|
cd themes
|
||||||
|
git clone https://github.com/gurusabarish/hugo-profile.git
|
||||||
```
|
```
|
||||||
|
|
||||||
>Don't use SSH URL of the theme during adding as git sub-module. Also, don't clone the theme in your `themes` directory using `git clone`. They don't work well with Github Action or Netlify.
|
<b>Go to the config file and add the line after titile ```theme: "hugo-profile"``` </b>
|
||||||
|
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Configure your `config.yaml` file of your site as below:
|
Configure your `config.yaml` file of your site as below:
|
||||||
|
|
||||||
```yaml
|
```
|
||||||
baseURL: "https://example.com"
|
baseURL: "https://example.com"
|
||||||
languageCode: "en-us"
|
languageCode: "en-us"
|
||||||
title: "Hugo-profile"
|
title: "Hugo-profile"
|
||||||
theme: "hugo-profile"
|
theme: "hugo-profile"
|
||||||
|
|
||||||
googleanalytics: UA-xxxxxxxxx-x
|
googleanalytics: UA-xxxxxxxx-x
|
||||||
disqusShortname: yourdiscussshortname
|
disqusShortname: yourdisqusname
|
||||||
Paginate: 3
|
Paginate: 3
|
||||||
|
|
||||||
taxonomies:
|
taxonomies:
|
||||||
@@ -66,104 +83,48 @@ taxonomies:
|
|||||||
category: "categories"
|
category: "categories"
|
||||||
|
|
||||||
params:
|
params:
|
||||||
favicon: "/images/hugo.png"
|
favicon: ""
|
||||||
description: "A hugh performance hugo theme for personal website. It is single page portfolio. It has blog, contact sections also. Contact is powered by formspree."
|
description: "A high performance hugo theme for personal website. It is single page portfolio. It has blog."
|
||||||
disqus: ""
|
|
||||||
copyright: "2020"
|
copyright: "2020"
|
||||||
|
|
||||||
# Background
|
|
||||||
custombackground: false
|
|
||||||
background: ""
|
|
||||||
backimg: ""
|
|
||||||
|
|
||||||
# Contact
|
|
||||||
contact: true
|
|
||||||
action: ""
|
|
||||||
emailname: ""
|
|
||||||
messagename: ""
|
|
||||||
|
|
||||||
# Navbar Menus
|
# Navbar Menus
|
||||||
customMenus:
|
customMenus:
|
||||||
- name: "Blog"
|
- name: "Blog"
|
||||||
Url: "/blog"
|
Url: "/blog"
|
||||||
|
|
||||||
# Home
|
# social
|
||||||
name: "Gurusabarish"
|
name: "Hugo-profile"
|
||||||
profile: "/images/avatar-370-456322.webp"
|
github: "https://github.com"
|
||||||
github: "https://github.com/gurusabarish"
|
linkedin: "https://linkedin.com"
|
||||||
linkedin: "https://linkedin.com/in/gurusabarish"
|
twitter: "https://twitter.com"
|
||||||
twitter: "https://twitter.com/gurusabarishh"
|
instagram: "https://instagram.com"
|
||||||
instagram: "https://instagram.com/gurusabarishh"
|
facebook: "https://facebook.com"
|
||||||
|
|
||||||
# Do things
|
|
||||||
usedothings: true
|
|
||||||
usedefaultlogos: true
|
|
||||||
|
|
||||||
thing1: "Python"
|
|
||||||
thing2: "Machine learning"
|
|
||||||
thing3: "Things for web"
|
|
||||||
thing1_des: "I build something beautiful using Python."
|
|
||||||
thing2_des: "I train robust models for various tasks."
|
|
||||||
thing3_des: "I love to build things for web."
|
|
||||||
|
|
||||||
# About
|
# About
|
||||||
profile_image: "/images/gurusabarish.jpg"
|
profile_image: ""
|
||||||
descripe_l1_person: "Hi, I'm Gurusabarish, a passionate web developer and ML engineer.
|
descripe_l1_person: "A high performance hugo theme for personal website and blog. It is a single page portfolio."
|
||||||
I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly."
|
|
||||||
descripe_l2_person: "This is just a example for about section. You can easily change with the help of cofig file."
|
descripe_l2_person: "This is just a example for about section. You can easily change with the help of cofig file."
|
||||||
job: "your role"
|
job: "Your job"
|
||||||
|
useresume: true
|
||||||
resume: ""
|
resume: ""
|
||||||
|
|
||||||
#projects
|
# Things I do
|
||||||
projects:
|
usedothings: true
|
||||||
- title: "Project name"
|
Things:
|
||||||
image: "/images/project-preview.jpg"
|
- logo: fab fa-python
|
||||||
description: "This is your description"
|
title: Python
|
||||||
secoundarylink: true
|
description: I build something beautiful using Python.
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
- logo: fas fa-robot
|
||||||
image: "/images/project-preview.jpg"
|
title: Machine learning
|
||||||
description: "This is your description"
|
description: I train robust models for various tasks.
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
- logo: fab fa-html5
|
||||||
image: "/images/project-preview.jpg"
|
title: Things for web
|
||||||
description: "This is your description"
|
description: I love to build things for web
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
|
||||||
image: "/images/project-preview.jpg"
|
|
||||||
description: "This is your description"
|
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
|
||||||
image: "/images/project-preview.jpg"
|
|
||||||
description: "This is your description"
|
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
|
||||||
image: "/images/project-preview.jpg"
|
|
||||||
description: "This is your description"
|
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
|
#blog ( Description for seo. If you want to show description in your blog post, let's make it true)
|
||||||
|
showdescription: true
|
||||||
|
|
||||||
Author:
|
Author:
|
||||||
name: "Gurusabarish"
|
name: "Gurusabarish"
|
||||||
@@ -175,6 +136,26 @@ Author:
|
|||||||
|
|
||||||
You can just copy the content for `config.yaml` files from `theme/toha/exampleSite/config.yaml`.
|
You can just copy the content for `config.yaml` files from `theme/toha/exampleSite/config.yaml`.
|
||||||
|
|
||||||
|
## Archetypes support
|
||||||
|
```
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: ""
|
||||||
|
tags:
|
||||||
|
-
|
||||||
|
bg_image: ""
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
## Version 1
|
||||||
|
- [demo](https://hugo-profile-v1.netlify.app)
|
||||||
|
- [view](https://github.com/gurusabarish/hugo-profile/tree/V1.20)
|
||||||
|
- [download V1](https://github.com/gurusabarish/hugo-profile/archive/V1.20.zip)
|
||||||
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
title: "{{ replace .Name "-" " " | title }}"
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
date: {{ .Date }}
|
date: {{ .Date }}
|
||||||
draft: true
|
draft: true
|
||||||
subtitle: ""
|
|
||||||
github_link: "https://github.com/gurusabarish/hugo-profile"
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
author: ""
|
author: ""
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
@@ -0,0 +1,59 @@
|
|||||||
|
baseURL: "https://hugo-profile.netlify.app"
|
||||||
|
languageCode: "en-us"
|
||||||
|
title: "Hugo-profile"
|
||||||
|
|
||||||
|
googleanalytics: UA-167646412-8
|
||||||
|
disqusShortname:
|
||||||
|
Paginate: 3
|
||||||
|
|
||||||
|
taxonomies:
|
||||||
|
tag: "tags"
|
||||||
|
category: "categories"
|
||||||
|
|
||||||
|
params:
|
||||||
|
favicon: "/images/fav.png"
|
||||||
|
description: "A high performance hugo theme for personal website. It is single page portfolio. It has blog."
|
||||||
|
copyright: "2020"
|
||||||
|
|
||||||
|
# Navbar Menus
|
||||||
|
customMenus:
|
||||||
|
- name: "Blog"
|
||||||
|
Url: "/blog"
|
||||||
|
|
||||||
|
# social
|
||||||
|
name: "Hugo-profile"
|
||||||
|
github: "https://github.com"
|
||||||
|
linkedin: "https://linkedin.com"
|
||||||
|
twitter: "https://twitter.com"
|
||||||
|
instagram: "https://instagram.com"
|
||||||
|
facebook: "https://facebook.com"
|
||||||
|
|
||||||
|
# About
|
||||||
|
profile_image: "/images/profile.webp"
|
||||||
|
descripe_l1_person: "A high performance hugo theme for personal website and blog. It is a single page portfolio."
|
||||||
|
descripe_l2_person: "This is just a example for about section. You can easily change with the help of cofig file."
|
||||||
|
job: "Your job"
|
||||||
|
useresume: true
|
||||||
|
resume: ""
|
||||||
|
|
||||||
|
# Things I do
|
||||||
|
usedothings: true
|
||||||
|
Things:
|
||||||
|
- logo: fab fa-python
|
||||||
|
title: Python
|
||||||
|
description: I build something beautiful using Python.
|
||||||
|
|
||||||
|
- logo: fas fa-robot
|
||||||
|
title: Machine learning
|
||||||
|
description: I train robust models for various tasks.
|
||||||
|
|
||||||
|
- logo: fab fa-html5
|
||||||
|
title: Things for web
|
||||||
|
description: I love to build things for web
|
||||||
|
|
||||||
|
#blog ( Description for seo. If you want to show description in your blog post, let's make it true)
|
||||||
|
showdescription: true
|
||||||
|
|
||||||
|
Author:
|
||||||
|
name: "Gurusabarish"
|
||||||
|
website: "https://github.com/gurusabarish"
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
---
|
||||||
|
title: "Markdown syntax"
|
||||||
|
date: 2020-08-15T13:22:10+05:30
|
||||||
|
draft: false
|
||||||
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: "Gurusabarish"
|
||||||
|
tags:
|
||||||
|
- markdown
|
||||||
|
- css
|
||||||
|
- blog
|
||||||
|
bg_image: ""
|
||||||
|
description: "This is a description of Markdown syntax "
|
||||||
|
---
|
||||||
|
|
||||||
|
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 | Markdown | In | Table |
|
||||||
|
| ------------------------ | -------------------------- | ----------------------------------- | ------ |
|
||||||
|
| *italics* | **bold** | ~~strikethrough~~ | `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.
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
---
|
||||||
|
title: "Markdown syntax"
|
||||||
|
date: 2020-08-15T13:22:10+05:30
|
||||||
|
draft: false
|
||||||
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: "Gurusabarish"
|
||||||
|
tags:
|
||||||
|
- markdown
|
||||||
|
- css
|
||||||
|
- blog
|
||||||
|
bg_image: ""
|
||||||
|
description: "This is a description of Markdown syntax "
|
||||||
|
---
|
||||||
|
|
||||||
|
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 | Markdown | In | Table |
|
||||||
|
| ------------------------ | -------------------------- | ----------------------------------- | ------ |
|
||||||
|
| *italics* | **bold** | ~~strikethrough~~ | `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.
|
||||||
@@ -0,0 +1,145 @@
|
|||||||
|
---
|
||||||
|
title: "Markdown syntax"
|
||||||
|
title: "Markdown syntax"
|
||||||
|
date: 2020-08-15T13:22:10+05:30
|
||||||
|
draft: false
|
||||||
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: "Gurusabarish"
|
||||||
|
tags:
|
||||||
|
- markdown
|
||||||
|
- css
|
||||||
|
- blog
|
||||||
|
bg_image: ""
|
||||||
|
description: "This is a description of Markdown syntax "
|
||||||
|
---
|
||||||
|
|
||||||
|
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 | Markdown | In | Table |
|
||||||
|
| ------------------------ | -------------------------- | ----------------------------------- | ------ |
|
||||||
|
| *italics* | **bold** | ~~strikethrough~~ | `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.
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
---
|
||||||
|
title: "Markdown syntax"
|
||||||
|
date: 2020-08-15T13:22:10+05:30
|
||||||
|
draft: false
|
||||||
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: "Gurusabarish"
|
||||||
|
tags:
|
||||||
|
- markdown
|
||||||
|
- css
|
||||||
|
- blog
|
||||||
|
bg_image: ""
|
||||||
|
description: "This is a description of Markdown syntax "
|
||||||
|
---
|
||||||
|
|
||||||
|
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 | Markdown | In | Table |
|
||||||
|
| ------------------------ | -------------------------- | ----------------------------------- | ------ |
|
||||||
|
| *italics* | **bold** | ~~strikethrough~~ | `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.
|
||||||
@@ -3,8 +3,8 @@ languageCode: "en-us"
|
|||||||
title: "Hugo-profile"
|
title: "Hugo-profile"
|
||||||
theme: "hugo-profile"
|
theme: "hugo-profile"
|
||||||
|
|
||||||
googleanalytics: UA-xxxxxxxxx-x
|
googleanalytics: UA-xxxxxxx-x
|
||||||
disqusShortname: yourdiscussshortname
|
disqusShortname:
|
||||||
Paginate: 3
|
Paginate: 3
|
||||||
|
|
||||||
taxonomies:
|
taxonomies:
|
||||||
@@ -12,104 +12,48 @@ taxonomies:
|
|||||||
category: "categories"
|
category: "categories"
|
||||||
|
|
||||||
params:
|
params:
|
||||||
favicon: "/images/hugo.png"
|
favicon: "/images/fav.png"
|
||||||
description: "A hugh performance hugo theme for personal website. It is single page portfolio. It has blog, contact sections also. Contact is powered by formspree."
|
description: "A high performance hugo theme for personal website. It is single page portfolio. It has blog."
|
||||||
disqus: ""
|
|
||||||
copyright: "2020"
|
copyright: "2020"
|
||||||
|
|
||||||
# Background
|
|
||||||
custombackground: false
|
|
||||||
background: ""
|
|
||||||
backimg: ""
|
|
||||||
|
|
||||||
# Contact
|
|
||||||
contact: true
|
|
||||||
action: ""
|
|
||||||
emailname: ""
|
|
||||||
messagename: ""
|
|
||||||
|
|
||||||
# Navbar Menus
|
# Navbar Menus
|
||||||
customMenus:
|
customMenus:
|
||||||
- name: "Blog"
|
- name: "Blog"
|
||||||
Url: "/blog"
|
Url: "/blog"
|
||||||
|
|
||||||
# Home
|
# social
|
||||||
name: "Gurusabarish"
|
name: "Hugo-profile"
|
||||||
profile: "/images/avatar-370-456322.webp"
|
github: "https://github.com"
|
||||||
github: "https://github.com/gurusabarish"
|
linkedin: "https://linkedin.com"
|
||||||
linkedin: "https://linkedin.com/in/gurusabarish"
|
twitter: "https://twitter.com"
|
||||||
twitter: "https://twitter.com/gurusabarishh"
|
instagram: "https://instagram.com"
|
||||||
instagram: "https://instagram.com/gurusabarishh"
|
facebook: "https://facebook.com"
|
||||||
|
|
||||||
# Do things
|
|
||||||
usedothings: true
|
|
||||||
usedefaultlogos: true
|
|
||||||
|
|
||||||
thing1: "Python"
|
|
||||||
thing2: "Machine learning"
|
|
||||||
thing3: "Things for web"
|
|
||||||
thing1_des: "I build something beautiful using Python."
|
|
||||||
thing2_des: "I train robust models for various tasks."
|
|
||||||
thing3_des: "I love to build things for web."
|
|
||||||
|
|
||||||
# About
|
# About
|
||||||
profile_image: "/images/gurusabarish.jpg"
|
profile_image: "/images/profile.webp"
|
||||||
descripe_l1_person: "Hi, I'm Gurusabarish, a passionate web developer and ML engineer.
|
descripe_l1_person: "A high performance hugo theme for personal website and blog. It is a single page portfolio."
|
||||||
I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly."
|
|
||||||
descripe_l2_person: "This is just a example for about section. You can easily change with the help of cofig file."
|
descripe_l2_person: "This is just a example for about section. You can easily change with the help of cofig file."
|
||||||
job: "your role"
|
job: "Your job"
|
||||||
|
useresume: true
|
||||||
resume: ""
|
resume: ""
|
||||||
|
|
||||||
#projects
|
# Things I do
|
||||||
projects:
|
usedothings: true
|
||||||
- title: "Project name"
|
Things:
|
||||||
image: "/images/project-preview.jpg"
|
- logo: fab fa-python
|
||||||
description: "This is your description"
|
title: Python
|
||||||
secoundarylink: true
|
description: I build something beautiful using Python.
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
- logo: fas fa-robot
|
||||||
image: "/images/project-preview.jpg"
|
title: Machine learning
|
||||||
description: "This is your description"
|
description: I train robust models for various tasks.
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
- logo: fab fa-html5
|
||||||
image: "/images/project-preview.jpg"
|
title: Things for web
|
||||||
description: "This is your description"
|
description: I love to build things for web
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
|
||||||
image: "/images/project-preview.jpg"
|
|
||||||
description: "This is your description"
|
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
|
||||||
image: "/images/project-preview.jpg"
|
|
||||||
description: "This is your description"
|
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
- title: "Project name"
|
|
||||||
image: "/images/project-preview.jpg"
|
|
||||||
description: "This is your description"
|
|
||||||
secoundarylink: true
|
|
||||||
secoundaryurlname: "Secoundary link"
|
|
||||||
secoundaryurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
sourceurl: "https://github.com/gurusabarish/hugo-profile"
|
|
||||||
|
|
||||||
|
#blog ( Description for seo. If you want to show description in your blog post, let's make it true)
|
||||||
|
showdescription: false
|
||||||
|
|
||||||
Author:
|
Author:
|
||||||
name: "Gurusabarish"
|
name: "Gurusabarish"
|
||||||
|
|||||||
@@ -1,18 +1,15 @@
|
|||||||
---
|
---
|
||||||
title: "Markdown syntax"
|
title: "Markdown syntax"
|
||||||
date: 2020-08-13T23:03:58+05:30
|
date: 2020-08-15T13:22:10+05:30
|
||||||
draft: false
|
draft: false
|
||||||
subtitle: "Javascript"
|
|
||||||
bg_image: "/images/bg-image.jpg"
|
|
||||||
description: "Markdown syntax"
|
|
||||||
author: "Gurusabarish"
|
|
||||||
github_link: "https://github.com/gurusabarish/hugo-profile"
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: "Gurusabarish"
|
||||||
tags:
|
tags:
|
||||||
- markdown
|
- markdown
|
||||||
- css
|
- css
|
||||||
- html
|
|
||||||
- themes
|
|
||||||
- blog
|
- blog
|
||||||
|
bg_image: ""
|
||||||
|
description: "This is a description of Markdown syntax "
|
||||||
---
|
---
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|||||||
@@ -2,15 +2,14 @@
|
|||||||
title: "Markdown syntax"
|
title: "Markdown syntax"
|
||||||
date: 2020-08-15T13:22:10+05:30
|
date: 2020-08-15T13:22:10+05:30
|
||||||
draft: false
|
draft: false
|
||||||
subtitle: "Javascript"
|
|
||||||
github_link: "https://github.com/gurusabarish/hugo-profile"
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
author: "Gurusabarish"
|
author: "Gurusabarish"
|
||||||
tags:
|
tags:
|
||||||
- markdown
|
- markdown
|
||||||
- css
|
- css
|
||||||
- blog
|
- blog
|
||||||
bg_image: "/images/bg-image-4.jpg"
|
bg_image: ""
|
||||||
description: "Markdown syntax"
|
description: "This is a description of Markdown syntax "
|
||||||
---
|
---
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: "Markdown syntax"
|
title: "Markdown syntax"
|
||||||
date: 2020-08-14T13:30:29+05:30
|
title: "Markdown syntax"
|
||||||
|
date: 2020-08-15T13:22:10+05:30
|
||||||
draft: false
|
draft: false
|
||||||
subtitle: "Javascript"
|
|
||||||
author: "Gurusabarish"
|
|
||||||
github_link: "https://github.com/gurusabarish/hugo-profile"
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
|
author: "Gurusabarish"
|
||||||
tags:
|
tags:
|
||||||
|
- markdown
|
||||||
|
- css
|
||||||
- blog
|
- blog
|
||||||
- theme
|
bg_image: ""
|
||||||
- javascript
|
description: "This is a description of Markdown syntax "
|
||||||
bg_image: "/images/bg-image-5.jpg"
|
|
||||||
description: "Markdown syntax"
|
|
||||||
---
|
---
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
---
|
---
|
||||||
title: "Markdown syntax"
|
title: "Markdown syntax"
|
||||||
date: 2020-09-28T16:19:06+05:30
|
date: 2020-08-15T13:22:10+05:30
|
||||||
draft: false
|
draft: false
|
||||||
subtitle: ""
|
|
||||||
github_link: "https://github.com/gurusabarish/hugo-profile"
|
github_link: "https://github.com/gurusabarish/hugo-profile"
|
||||||
author: ""
|
author: "Gurusabarish"
|
||||||
tags:
|
tags:
|
||||||
- markdown
|
- markdown
|
||||||
|
- css
|
||||||
|
- blog
|
||||||
bg_image: ""
|
bg_image: ""
|
||||||
description: "Markdown syntax"
|
description: "This is a description of Markdown syntax "
|
||||||
---
|
---
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 656 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 1.0 MiB |
@@ -1,84 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
width="350px" height="302px" viewBox="0 0 350 302" style="enable-background:new 0 0 350 302;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#F9C758;}
|
|
||||||
.st1{fill:#FAFAFA;}
|
|
||||||
.st2{fill:#9B9B9B;}
|
|
||||||
.st3{fill:#B3B3B3;}
|
|
||||||
.st4{fill:#CFCFCF;}
|
|
||||||
.st5{fill:#FFFFFF;}
|
|
||||||
.st6{fill:#464646;}
|
|
||||||
.st7{fill:#FC86B4;}
|
|
||||||
.st8{fill:#D66DF7;}
|
|
||||||
.st9{fill:#D3D2D1;}
|
|
||||||
.st10{fill:#FBC39D;}
|
|
||||||
.st11{fill:#9DF9E1;}
|
|
||||||
.st12{fill:#565656;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M288.9,160.7h-16.1c-0.3,0-0.5,0.2-0.5,0.5v12.2c0,3.6,2.9,6.4,6.4,6.4h4.3c3.6,0,6.4-2.9,6.4-6.4v-12.2
|
|
||||||
C289.4,161,289.2,160.7,288.9,160.7z"/>
|
|
||||||
<path class="st0" d="M287,177.8c3.6-2,9.9-8.1,8.8-12.4c-0.3-1.1-1-2-2-2.5c-2.4-1.1-5.8,0.2-6.2,0.4l1.1,2.4
|
|
||||||
c0.8-0.3,2.9-0.9,3.8-0.4c0.2,0.1,0.4,0.2,0.5,0.7c0.6,2.5-4.3,7.7-7.5,9.5L287,177.8z"/>
|
|
||||||
</g>
|
|
||||||
<path class="st1" d="M213.4,165.1H77.9c-1.8,0-3.3-1.5-3.3-3.3V83.5c0-1.8,1.5-3.3,3.3-3.3h135.5c1.8,0,3.3,1.5,3.3,3.3v78.3
|
|
||||||
C216.7,163.6,215.2,165.1,213.4,165.1z"/>
|
|
||||||
<path class="st2" d="M161.7,176.2c-0.5-1.4-0.7-2.8-0.7-4.3v-6.8h-15.3H145h-13.7v6.8c0,1.5-0.2,2.9-0.7,4.3c-0.7,1.9-2.1,4-4.6,4
|
|
||||||
h19h0.7h20.6C163.8,180.2,162.4,178.1,161.7,176.2z"/>
|
|
||||||
<path class="st3" d="M300.3,189.3H65.8c-1.2,0-2.1-0.9-2.1-2.1v-4.9c0-1.2,0.9-2.1,2.1-2.1h234.4c1.2,0,2.1,0.9,2.1,2.1v4.9
|
|
||||||
C302.4,188.4,301.5,189.3,300.3,189.3z"/>
|
|
||||||
<path class="st4" d="M213.4,151.6H77.9c-1.8,0-3.3-1.5-3.3-3.3V70c0-1.8,1.5-3.3,3.3-3.3h135.5c1.8,0,3.3,1.5,3.3,3.3v78.3
|
|
||||||
C216.7,150.1,215.2,151.6,213.4,151.6z"/>
|
|
||||||
<rect x="80.1" y="71.3" class="st5" width="131.3" height="74.7"/>
|
|
||||||
<path class="st5" d="M280.4,156.1c0.5-0.2,1.1-0.5,1.5-0.8c0.5-0.3,0.9-0.8,1.1-1.2c0.2-0.5,0.2-0.9-0.1-1.3c-0.3-0.4-0.7-0.7-1.1-1
|
|
||||||
c-0.5-0.3-1-0.5-1.5-0.7c-0.2-0.1-0.6-0.2-0.9-0.3s-0.6-0.3-0.9-0.5c-1.2-0.7-2.3-1.6-3.2-2.8c-0.9-1.1-1.6-2.5-2-3.9
|
|
||||||
c-0.4-1.5-0.6-3-0.3-4.7c0.2-0.8,0.4-1.7,0.9-2.6c0.4-0.9,1.1-1.7,1.9-2.4s1.8-1.2,2.8-1.5s2-0.4,3-0.5h1c2.3,0,4.3,1.8,4.3,4.2
|
|
||||||
c0,2.3-1.8,4.3-4.2,4.3c-0.7,0-1.3-0.2-1.9-0.4c-0.5-0.2-0.8-0.4-1.1-0.4c-0.3,0-0.8,0.3-1.2,0.9c-0.4,0.6-0.6,1.5-0.6,2.4
|
|
||||||
s0.1,1.9,0.5,2.8c0.4,0.9,0.9,1.8,1.6,2.6c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.2,0.4,0.3,0.7,0.5c0.5,0.4,1,0.8,1.5,1.3s0.9,1,1.2,1.8
|
|
||||||
c0.1,0.4,0.2,0.8,0.1,1.1c-0.1,0.4-0.2,0.7-0.4,1c-0.4,0.6-0.9,0.9-1.4,1.3c-0.5,0.3-1.1,0.6-1.6,0.9c-0.1,0.1-0.3,0-0.3-0.1
|
|
||||||
C280.2,156.3,280.3,156.1,280.4,156.1L280.4,156.1L280.4,156.1z"/>
|
|
||||||
<path class="st6" d="M108.6,132.2c0.1,0.1,0.3,0,0.4-0.1l2.5-2.5l1.8,3.6c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0,0.1,0,0.2,0l1.5-0.8
|
|
||||||
c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0-0.2,0-0.3l-1.7-3.3h3.3c0.1,0,0.3-0.1,0.3-0.2c0.1-0.1,0-0.3-0.1-0.4l-8.3-7.6
|
|
||||||
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0.1-0.2,0.2-0.2,0.3v11.1C108.4,132,108.5,132.1,108.6,132.2z"/>
|
|
||||||
<rect x="92.8" y="87.5" class="st7" width="20.7" height="10.5"/>
|
|
||||||
<rect x="118.5" y="87.5" class="st8" width="56.3" height="10.5"/>
|
|
||||||
<rect x="92.8" y="105.4" class="st0" width="48.5" height="3"/>
|
|
||||||
<rect x="92.8" y="113.2" class="st0" width="42.6" height="3"/>
|
|
||||||
<g>
|
|
||||||
<path class="st9" d="M277,76.2c-13.7,0-24.8-11.1-24.8-24.8s11.1-24.8,24.8-24.8s24.8,11.1,24.8,24.8
|
|
||||||
C301.9,65.1,290.7,76.2,277,76.2z M277,30.1c-11.7,0-21.3,9.5-21.3,21.3s9.5,21.3,21.3,21.3s21.3-9.5,21.3-21.3
|
|
||||||
S288.7,30.1,277,30.1z"/>
|
|
||||||
<path class="st9" d="M277.6,52.9h-16.1c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9h15.2v-16c0-0.5,0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9
|
|
||||||
v16.8C278.5,52.4,278.1,52.9,277.6,52.9z"/>
|
|
||||||
</g>
|
|
||||||
<path class="st10" d="M186.1,176.2L111,181c-6.5,0.4-12-4.5-12.5-11l0,0c-0.4-6.5,4.5-12,11-12.5l75.1-4.8c3.9-0.3,7.3,2.7,7.6,6.7
|
|
||||||
l0.6,9.1C193,172.5,190,175.9,186.1,176.2z"/>
|
|
||||||
<path class="st11" d="M138.2,131.5L101,157.7c-4.9,3.5-6.2,10.2-2.9,15.2l0,0c2.5,3.8,7.1,5.8,11.6,4.9c16.4-3.3,54-11,53.6-12.3
|
|
||||||
c-0.3-1-4.5-15.9-7.8-27.9C153.3,130.2,144.5,127.1,138.2,131.5z"/>
|
|
||||||
<path class="st10" d="M163.4,176.2l75.1,4.8c6.5,0.4,12-4.5,12.5-11l0,0c0.4-6.5-4.5-12-11-12.5l-75.1-4.8c-3.9-0.3-7.3,2.7-7.6,6.7
|
|
||||||
l-0.6,9.1C156.5,172.5,159.5,175.9,163.4,176.2z"/>
|
|
||||||
<path class="st11" d="M211.3,131.5l37.2,26.2c4.9,3.5,6.2,10.2,2.9,15.2l0,0c-2.5,3.8-7.1,5.8-11.6,4.9c-16.4-3.3-54-11-53.6-12.3
|
|
||||||
c0.3-1,4.5-15.9,7.8-27.9C196.2,130.2,205,127.1,211.3,131.5z"/>
|
|
||||||
<g>
|
|
||||||
<ellipse class="st6" cx="145.6" cy="91.2" rx="7.3" ry="7.6"/>
|
|
||||||
<ellipse class="st6" cx="200.6" cy="91.2" rx="7.3" ry="7.6"/>
|
|
||||||
<path class="st6" d="M170.9,131.7L170.9,131.7c0.7,0.1,1.5,0.2,2.2,0.2l0,0c2.3,0,4.6-0.3,6.7-0.9c0,0,0,0,0-0.1
|
|
||||||
c11.9-3.1,20.7-14.3,20.7-27.7V69.8c0-15.8-12.3-13.3-27.5-13.3l0,0c-15.2,0-27.5-2.5-27.5,13.3v33.5
|
|
||||||
C145.6,118.2,156.7,130.5,170.9,131.7z"/>
|
|
||||||
<path class="st6" d="M195,92.2v9h-9.7c0,0-2.4-6.5-12.2-6.5s-12.2,6.5-12.2,6.5h-9.7v-9c0-3.6-3.3-4.7-5.5-5.1v16.1
|
|
||||||
c0,15,11.1,27.3,25.2,28.4l0,0c0.8,0.1,1.5,0.1,2.3,0.1s1.5,0,2.3-0.1l0,0c14.1-1.2,25.2-13.5,25.2-28.4V87.1
|
|
||||||
C198.4,87.5,195,88.7,195,92.2z"/>
|
|
||||||
<path class="st6" d="M193.3,45.5c-7.5-1.1-19.2-1.2-27.8,5.8c-0.2,0.2-0.4,0.4-0.5,0.5h-6.8c-7,0-12.6,4.9-12.6,11V69v14.2v17.4
|
|
||||||
c1.3,0,2.3-1.1,2.3-2.4V73.9c0,0,0.4-7.7,7.4-7.7h16h0.1h18.2c7.5,0,8.4,6.8,8.5,7.7v24.5c0,1.3,1,2.4,2.3,2.4V83.4V69.1v-5.5
|
|
||||||
l0.1-9.5C200.7,49.8,197.5,46.1,193.3,45.5z"/>
|
|
||||||
</g>
|
|
||||||
<rect x="147.1" y="62.1" class="st6" width="53.1" height="46"/>
|
|
||||||
<path class="st12" d="M188,275.3h-30c-21,0-37.9-18.3-37.9-40.9l9.5-82c3.3-21.9,23.5-35.9,44-35.9l0,0c20.7,0,41.1,14.4,44.1,36.5
|
|
||||||
l8.3,81.4C226,256.9,209,275.3,188,275.3z"/>
|
|
||||||
<path class="st4" d="M180,299.2h-13.6c-1.5,0-2.7-1.2-2.7-2.7V187.2c0-1.5,1.2-2.7,2.7-2.7H180c1.5,0,2.7,1.2,2.7,2.7v109.3
|
|
||||||
C182.7,298,181.5,299.2,180,299.2z"/>
|
|
||||||
<path class="st6" d="M184.5,194.7H161c-2.9,0-5.2-2.3-5.2-5.2v-9.9c0-2.9,2.3-5.2,5.2-5.2h23.5c2.9,0,5.2,2.3,5.2,5.2v9.9
|
|
||||||
C189.8,192.4,187.4,194.7,184.5,194.7z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 312 KiB |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 139 KiB |
@@ -12,8 +12,7 @@
|
|||||||
|
|
||||||
{{- partial "header.html" . -}}
|
{{- partial "header.html" . -}}
|
||||||
|
|
||||||
<div class="bg-light row justify-centent-center py-5">
|
<div class="bg-white row justify-centent-center py-5">
|
||||||
|
|
||||||
<div class="display-4 font-weight-bold text-center col p-5">
|
<div class="display-4 font-weight-bold text-center col p-5">
|
||||||
404 page not found
|
404 page not found
|
||||||
<div class="text-center p-5">
|
<div class="text-center p-5">
|
||||||
@@ -21,8 +20,8 @@
|
|||||||
site</a>
|
site</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="fixed-bottom">
|
<div class="fixed-bottom">
|
||||||
{{- partial "footer.html" . -}}
|
{{- partial "footer.html" . -}}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -6,11 +6,10 @@
|
|||||||
{{- block "head" . -}}{{- end }}
|
{{- block "head" . -}}{{- end }}
|
||||||
|
|
||||||
<!-- stylesheets -->
|
<!-- stylesheets -->
|
||||||
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
<link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
|
||||||
<link rel="stylesheet" href="/css/blog.css">
|
|
||||||
|
|
||||||
<!-- Fonts -->
|
<!-- Fonts -->
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Peddana&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Peddana&display=swap" rel="stylesheet" media="all">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
{{ define "head"}}
|
{{ define "head"}}
|
||||||
<meta name="description" content="blog of {{ .Site.Title}}" />
|
<meta name="description" content="blog of {{ .Site.Title}}" />
|
||||||
<title>blog</title>
|
<title>{{ .Title }}</title>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<section class="bg-light">
|
<section class="bg-white">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
|
||||||
<div class="row pt-3 justify-content-center">
|
<div class="row pt-3 justify-content-center">
|
||||||
@@ -16,10 +16,8 @@
|
|||||||
{{ if .Params.tags }}
|
{{ if .Params.tags }}
|
||||||
<h5 class="card-header m-0">
|
<h5 class="card-header m-0">
|
||||||
{{ if .Params.tags }}
|
{{ if .Params.tags }}
|
||||||
{{ range $tags := .Params.tags }}
|
{{ range .Params.tags }}
|
||||||
{{ with $.Site.GetPage (printf "/tags/%s" $tags) }}
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="btn btn-info btn-rounded mb-2">{{ . }}</a>
|
||||||
<a href="{{ .RelPermalink }}" class="btn btn-info btn-rounded mb-2">{{ $tags }}</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</h5>
|
</h5>
|
||||||
@@ -28,7 +26,14 @@
|
|||||||
<a class="text-decoration-none" href="{{ .Permalink }}">
|
<a class="text-decoration-none" href="{{ .Permalink }}">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="text-xs font-weight-bold text-primary text-uppercase mb-1">{{ .Title }}</div>
|
<div class="text-xs font-weight-bold text-primary text-uppercase mb-1">{{ .Title }}</div>
|
||||||
<div class="text-muted">
|
|
||||||
|
{{ if .Site.Params.showdescription }}
|
||||||
|
<div class="text-muted py-2">
|
||||||
|
{{ .Params.description }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<div class="text-dark">
|
||||||
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-calendar" fill="currentColor"
|
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-calendar" fill="currentColor"
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd"
|
<path fill-rule="evenodd"
|
||||||
|
|||||||
@@ -1,12 +1,137 @@
|
|||||||
{{ define "head"}}
|
{{ define "head"}}
|
||||||
<meta name="description" content="{{ .Params.description }}" />
|
<meta name="description" content="{{ .Params.description }}" />
|
||||||
<title>{{ .Title }}</title>
|
<title>{{ .Title }}</title>
|
||||||
|
<style>
|
||||||
|
article {
|
||||||
|
font-family: 'Peddana', serif;
|
||||||
|
line-height: 1.3;
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
article blockquote {
|
||||||
|
margin: 0 !;
|
||||||
|
border-left: 4px solid #248aaa !important;
|
||||||
|
background-color: #248baa15 !important;
|
||||||
|
padding: 0.3rem !important;
|
||||||
|
padding-left: 1rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article blockquote>p {
|
||||||
|
color: #3c4858 !important;
|
||||||
|
margin-top: 0.5rem !important;
|
||||||
|
margin-bottom: 0.5rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article h1 {
|
||||||
|
font-size: 55px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article h2 {
|
||||||
|
font-size: 42px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article h3 {
|
||||||
|
font-size: 35px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-size: 30px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article table {
|
||||||
|
border-radius: 0.1rem;
|
||||||
|
background: #e5e9f2;
|
||||||
|
border: 1px solid #c0ccda;
|
||||||
|
padding: 0.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
article table tr {
|
||||||
|
height: 40px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article table th,
|
||||||
|
td {
|
||||||
|
padding: 0.5rem;
|
||||||
|
border-left: 1px solid #8392a5;
|
||||||
|
border-bottom: 1px solid #8392a5;
|
||||||
|
}
|
||||||
|
|
||||||
|
article table thead tr {
|
||||||
|
background: #248aaa;
|
||||||
|
color: #e5e9f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
article tbody tr:nth-child(odd) {
|
||||||
|
background-color: #e5e9f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
article tbody tr:hover {
|
||||||
|
background: #c0ccda;
|
||||||
|
}
|
||||||
|
|
||||||
|
article img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
article caption,
|
||||||
|
figcaption {
|
||||||
|
caption-side: bottom;
|
||||||
|
text-align: center;
|
||||||
|
color: #8392a5;
|
||||||
|
}
|
||||||
|
|
||||||
|
article pre {
|
||||||
|
margin: 5px;
|
||||||
|
padding: 5%;
|
||||||
|
font-size: 18px;
|
||||||
|
max-height: 400px;
|
||||||
|
border-radius: 2%;
|
||||||
|
background-color: #1f618d !important;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
article pre>code {
|
||||||
|
padding: 10px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
article a.header-anchor {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #1c2d41;
|
||||||
|
}
|
||||||
|
|
||||||
|
article a.header-anchor i {
|
||||||
|
font-size: 10pt;
|
||||||
|
color: #3c4858;
|
||||||
|
display: none;
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
article a.header-anchor:hover i {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
article a.header-anchor code {
|
||||||
|
color: #e83e8c;
|
||||||
|
}
|
||||||
|
|
||||||
|
article kbd {
|
||||||
|
background-color: #248aaa !important;
|
||||||
|
color: #f9fafc;
|
||||||
|
}
|
||||||
|
|
||||||
|
article mark {
|
||||||
|
background-color: #ffc21280;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
|
|
||||||
<section class="bg-light">
|
<section class="bg-white">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-md-center">
|
<div class="row justify-content-md-center">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
@@ -47,27 +172,33 @@
|
|||||||
</a>
|
</a>
|
||||||
{{ end}}
|
{{ end}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{ if .Site.Params.showdescription }}
|
||||||
|
<div class="text-dark py-2">
|
||||||
|
{{ .Params.description }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
|
<div>
|
||||||
{{ $.Scratch.Add "path" .Site.BaseURL }}
|
|
||||||
<nav aria-label="breadcrumb">
|
<nav aria-label="breadcrumb">
|
||||||
<ol class="breadcrumb">
|
<ol class="breadcrumb">
|
||||||
<li class="breadcrumb-item" aria-current="page">
|
<!-- Initialise a scratch variable "path" to an empty string -->
|
||||||
<a href="/">home</a>
|
{{ $.Scratch.Set "path" "" }}
|
||||||
</li>
|
<li><a href="/">Home</a></li>
|
||||||
{{ range $index, $element := split $url "/" }}
|
<!-- For each non-empty item in the URL path -->
|
||||||
{{ $.Scratch.Add "path" $element }}
|
{{ range $element := split .RelPermalink "/" }}
|
||||||
{{ if ne $element "" }}
|
{{ if ne $element "" }}
|
||||||
<li class="breadcrumb-item" aria-current="page">
|
<!-- Add the element to the scratch variable -->
|
||||||
<a href='{{ $.Scratch.Get "path" }}'>{{ . }}</a>
|
{{ $.Scratch.Add "path" "/" }}{{ $.Scratch.Add "path" $element }}
|
||||||
</li>
|
<!-- Populate the href from the scratch variable -->
|
||||||
{{ $.Scratch.Add "path" "/" }}
|
<span class="text-muted px-2">/</span>
|
||||||
|
<li><a href="{{ $.Scratch.Get "path" }}">{{ humanize . }}</a></li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</nav>
|
||||||
|
</div>
|
||||||
<!-- image -->
|
<!-- image -->
|
||||||
<div class="py-2">
|
<div class="py-2">
|
||||||
{{ with .Params.bg_image }}
|
{{ with .Params.bg_image }}
|
||||||
@@ -86,10 +217,8 @@
|
|||||||
<h5 class="card-header m-0">Tags</h5>
|
<h5 class="card-header m-0">Tags</h5>
|
||||||
<div class=" card-body">
|
<div class=" card-body">
|
||||||
{{ if .Params.tags }}
|
{{ if .Params.tags }}
|
||||||
{{ range $tags := .Params.tags }}
|
{{ range .Params.tags }}
|
||||||
{{ with $.Site.GetPage (printf "/tags/%s" $tags) }}
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="btn btn-info btn-rounded mb-2">{{ . }}</a>
|
||||||
<a href="{{ .RelPermalink }}" class="btn btn-info btn-rounded mb-2">{{ $tags }}</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,26 +4,91 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>{{- .Site.Title -}}</title>
|
<title>{{- .Site.Title -}}</title>
|
||||||
<!-- stylesheets -->
|
<!-- stylesheets -->
|
||||||
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
<link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
|
||||||
<link rel="stylesheet" href="/css/index.css">
|
|
||||||
<!-- Fonts -->
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=PT+Serif&display=swap" rel="stylesheet">
|
|
||||||
<meta name="description" content="{{ .Site.Params.description }}">
|
<meta name="description" content="{{ .Site.Params.description }}">
|
||||||
{{ template "_internal/google_analytics.html" . }}
|
{{ template "_internal/google_analytics.html" . }}
|
||||||
{{- partial "head.html" . -}}
|
{{- partial "head.html" . -}}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* do things */
|
||||||
|
|
||||||
|
.do-things {
|
||||||
|
background-color: #e5e9f2;
|
||||||
|
height: auto;
|
||||||
|
padding: 0;
|
||||||
|
padding-bottom: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.things-i-do {
|
||||||
|
font-family: 'Alata', sans-serif;
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.things {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.things-text {
|
||||||
|
height: 100px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
.do-things-card {
|
||||||
|
padding-left: 15%;
|
||||||
|
padding-right: 15%;
|
||||||
|
padding-bottom: 15%;
|
||||||
|
padding-top: 0%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* about */
|
||||||
|
|
||||||
|
.about {
|
||||||
|
height: auto;
|
||||||
|
background-color: #e5e9f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jop {
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-me {
|
||||||
|
font-family: 'Alata', sans-serif;
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-content {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-content a:hover {
|
||||||
|
text-decoration-line: none;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
.about {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
{{- partial "header.html" . -}}
|
||||||
|
|
||||||
{{- partial "sections/home.html" . -}}
|
|
||||||
{{- partial "sections/blog.html" . -}}
|
|
||||||
{{- partial "sections/about.html" . -}}
|
{{- partial "sections/about.html" . -}}
|
||||||
{{- partial "sections/do_things.html" . -}}
|
{{- partial "sections/do_things.html" . -}}
|
||||||
{{- partial "sections/projects.html" . -}}
|
|
||||||
{{- partial "sections/contact.html" . -}}
|
|
||||||
|
|
||||||
{{- partial "footer.html" . -}}
|
{{- partial "footer.html" . -}}
|
||||||
{{- partial "scripts.html" . -}}
|
{{- partial "scripts.html" . -}}
|
||||||
|
<script src="https://kit.fontawesome.com/c4be8004cd.js" crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -1,29 +1,25 @@
|
|||||||
<footer class="footer py-3 text-muted text-center">
|
<footer class="footer py-3 text-muted text-center">
|
||||||
|
<div class="pb-2">
|
||||||
|
<div class="footer-site pb-2 font-weight-bold">
|
||||||
<p>
|
<a class="text-uppercase" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
||||||
|
</div>
|
||||||
<div class="footer-site text-uppercase pb-2 font-weight-bold"><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></div>
|
|
||||||
|
|
||||||
© {{ .Site.Params.copyright }} All Rights Reserved<br>
|
© {{ .Site.Params.copyright }} All Rights Reserved<br>
|
||||||
|
|
||||||
Made with
|
Made with
|
||||||
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-heart" fill="currentColor"
|
<a class="text-dark" href="https://github.com/gurusabarish/hugo-profile"
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
aria-label="hugo-profile">Hugo-profile</a>
|
||||||
<path fill-rule="evenodd"
|
|
||||||
d="M8 2.748l-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01L8 2.748zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143c.06.055.119.112.176.171a3.12 3.12 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15z" />
|
|
||||||
</svg>
|
|
||||||
and
|
and
|
||||||
<a href="https://gohugo.io" aria-label="hugo">Hugo</a>
|
<a class="text-dark" href="https://gohugo.io" aria-label="hugo">Hugo</a>
|
||||||
|
|
||||||
by
|
by
|
||||||
{{- if .Site.Author.name }}
|
{{ if .Site.Author.name }}
|
||||||
{{- if .Site.Author.website }}
|
{{ if .Site.Author.website }}
|
||||||
<a href="{{ .Site.Author.website }}" aria-label="github handle">{{ .Site.Author.name }}</a>
|
<a class="text-dark" href="{{ .Site.Author.website }}" aria-label="github handle">{{ .Site.Author.name }}</a>
|
||||||
{{- else }}
|
{{ else }}
|
||||||
{{ .Site.Author.name }}
|
{{ .Site.Author.name }}
|
||||||
{{- end }}
|
{{ end }}
|
||||||
{{- end }}
|
{{ else }}
|
||||||
</p>
|
<a class="text-dark" href="https://github.com/gurusabarish" aria-label="github handle">GuruSabarish</a>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
@@ -3,7 +3,36 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<link rel="icon" href="{{ .Site.Params.favicon | default "/images/favicon.png"}}" type="image/gif">
|
<link rel="icon" href="{{ .Site.Params.favicon | default "/images/favicon.png"}}" type="image/gif">
|
||||||
<!-- Header and Footer -->
|
<!-- Header and Footer -->
|
||||||
<link rel="stylesheet" href="/css/head_foot.css">
|
<style>
|
||||||
<!-- Fonts -->
|
/*footer*/
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Alata&display=swap" rel="stylesheet">
|
.footer {
|
||||||
|
background: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-text {
|
||||||
|
font-size: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-site {
|
||||||
|
font-family: 'Alata', sans-serif;
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*navbar*/
|
||||||
|
.navbar-color {
|
||||||
|
color: #101820ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link {
|
||||||
|
color: #101820ff !important;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,31 +1,28 @@
|
|||||||
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm sticky-top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand text-dark" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
<a class="navbar-brand font-weight-bold" href="{{ .Site.BaseURL | relURL }}">
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
|
{{ if .Site.Params.favicon }}
|
||||||
|
<img src="{{ .Site.Params.favicon }}" width="30" height="30" class="d-inline-block align-top"
|
||||||
|
alt="{{ .Site.Title }}">
|
||||||
|
{{ .Site.Title }}
|
||||||
|
{{ else }}
|
||||||
|
{{ .Site.Title }}
|
||||||
|
{{ end }}
|
||||||
|
</a>
|
||||||
|
<button class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
|
||||||
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
|
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" id="navbarNavDropdown">
|
<div class="collapse navbar-collapse" id="navbarNavDropdown">
|
||||||
<ul class="navbar-nav ml-auto">
|
<ul class="navbar-nav ml-auto text-center">
|
||||||
<li class="nav-item">
|
<li class="nav-item navbar-text">
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#home">Home</a>
|
<a class="nav-link" href="{{ .Site.BaseURL | relURL }}#" aria-label="about">About</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#about">About</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#projects">Projects</a>
|
|
||||||
</li>
|
|
||||||
{{ if .Site.Params.contact }}
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#contact">Contact</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ range site.Params.customMenus }}
|
{{ range site.Params.customMenus }}
|
||||||
<li class="nav-item">
|
<li class="nav-item navbar-text">
|
||||||
<a class="nav-link text-dark" href="{{.Url}}">{{ .name }}</a>
|
<a class="nav-link" href="{{.Url}}" aria-label="{{ .name }}">{{ .name }}</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -1,14 +1,23 @@
|
|||||||
<section>
|
<section>
|
||||||
<div class="about p-3" id="about">
|
<div class="p-2"></div>
|
||||||
|
<div class="about p-3 bg-white">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="about-me text-center font-weight-bold text-secondary">About Me</div>
|
<h1 class="text-center">
|
||||||
|
{{ if .Site.Params.name }}
|
||||||
|
{{ .Site.Params.name }}
|
||||||
|
{{ end }}
|
||||||
|
</h1>
|
||||||
<div class="row justify-content-center ">
|
<div class="row justify-content-center ">
|
||||||
<div class="col-lg-3 pt-4 text-center">
|
<div class="col-lg-3 pt-4 text-center">
|
||||||
<img src="{{ .Site.Params.profile_image }}" width="200px" alt="{{ .Site.Params.name }}"
|
{{ if .Site.Params.profile_image }}
|
||||||
|
<img src="{{ .Site.Params.profile_image }}" width="200" height="200" alt="{{ .Site.Params.name }}"
|
||||||
class="rounded">
|
class="rounded">
|
||||||
<div class="about-me jop font-weight-bold text-secondary">{{ .Site.Params.job }}</div>
|
{{ end }}
|
||||||
|
<div class="about-me jop font-weight-bold text-secondary">
|
||||||
|
{{ if .Site.Params.job }}
|
||||||
|
{{ .Site.Params.job }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ if .Site.Params.linkedin }}
|
{{ if .Site.Params.linkedin }}
|
||||||
<a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
|
<a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
|
||||||
@@ -18,20 +27,28 @@
|
|||||||
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" />
|
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" />
|
||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-7 pt-3 ">
|
<div class="col-lg-7 pt-3 ">
|
||||||
<div class="about-content text-dark p-3">
|
<div class="about-content text-dark p-3">
|
||||||
|
{{ if .Site.Params.descripe_l1_person }}
|
||||||
{{ .Site.Params.descripe_l1_person }}
|
{{ .Site.Params.descripe_l1_person }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if .Site.Params.descripe_l2_person }}
|
||||||
<br><br>
|
<br><br>
|
||||||
{{ .Site.Params.descripe_l2_person }}
|
{{ .Site.Params.descripe_l2_person }}
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
<div class="social p-4">
|
<div class="social p-4">
|
||||||
|
{{ if .Site.Params.useresume }}
|
||||||
<a href="{{ .Site.Params.resume | default "#" }}" class="btn btn-info" role="button"
|
<a href="{{ .Site.Params.resume | default "#" }}" class="btn btn-info" role="button"
|
||||||
aria-pressed="true">
|
aria-pressed="true">
|
||||||
Resume
|
Resume
|
||||||
</a>
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{ if .Site.Params.github }}
|
{{ if .Site.Params.github }}
|
||||||
<a class="text-dark" href="{{ .Site.Params.github }}" aria-label="github">
|
<a class="text-dark" href="{{ .Site.Params.github }}" aria-label="github">
|
||||||
@@ -62,6 +79,20 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ if .Site.Params.facebook }}
|
||||||
|
<a class="text-info" href="{{ .Site.Params.facebook }}" aria-label="facebook">
|
||||||
|
<svg width="2em" height="2em" aria-hidden="true" focusable="false" data-prefix="fab"
|
||||||
|
data-icon="facebook-f" class="svg-inline--fa fa-facebook-f fa-w-10" role="img"
|
||||||
|
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
|
||||||
|
<path fill="currentColor"
|
||||||
|
d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z">
|
||||||
|
</path>
|
||||||
|
</svg>
|
||||||
|
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
<section>
|
|
||||||
<div class="p-3 blog-back">
|
|
||||||
<div class="container">
|
|
||||||
<div class="text-center pb-3">
|
|
||||||
<div class="recent-posts">Recent posts</div>
|
|
||||||
</div>
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
{{ range first 4 (where site.RegularPages.ByDate.Reverse "Type" "in" site.Params.mainSections )}}
|
|
||||||
<div class="col-lg-3 col-md-5 pb-3 post-card">
|
|
||||||
<a href="{{ .RelPermalink }}">
|
|
||||||
<span class="text-secondary">{{ .Date.Format "January 2, 2006" }}</span>
|
|
||||||
<div class="text-dark">
|
|
||||||
{{ .Title }}
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
{{ if .Site.Params.contact }}
|
|
||||||
<section id="contact">
|
|
||||||
<div class="contact bg-danger text-white">
|
|
||||||
<div class="text-center p-3 font-weight-bold contact-head">Get In Tough</div>
|
|
||||||
<div class="p-3 container">
|
|
||||||
<div class="row justify-content-center">
|
|
||||||
<div class="col-lg-7">
|
|
||||||
<form action="{{ .Site.Params.action }}" method="POST">
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="exampleFormControlInput1">Email</label>
|
|
||||||
<input type="email" class="form-control" id="exampleFormControlInput1"
|
|
||||||
placeholder="example@gmail.com" name="{{ .Site.Params.emailname }}">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="exampleFormControlTextarea1">Message</label>
|
|
||||||
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"
|
|
||||||
name="{{ .Site.Params.messagename }}" placeholder="Type something"></textarea>
|
|
||||||
</div>
|
|
||||||
<div class="text-center">
|
|
||||||
<button type="submit" class="btn btn-primary">Submit</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
{{ end }}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{{ if .Site.Params.usedothings }}
|
{{ if .Site.Params.usedothings }}
|
||||||
<section>
|
<section>
|
||||||
<div class="pt-3 do-things text-center" id="do-things">
|
<div class="do-things text-center bg-white" id="do-things">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="things-i-do text-primary font-weight-bold">
|
<div class="things-i-do text-primary font-weight-bold">
|
||||||
Things I do
|
Things I do
|
||||||
@@ -8,75 +8,21 @@
|
|||||||
|
|
||||||
<div class="do-things-card">
|
<div class="do-things-card">
|
||||||
<div class="row pb-5 justify-content-center">
|
<div class="row pb-5 justify-content-center">
|
||||||
|
{{ range .Site.Params.Things }}
|
||||||
<!-- Thing 1 -->
|
<!-- Thing 1 -->
|
||||||
<div class="col-lg-3">
|
<div class="col-lg-3 col-md-4">
|
||||||
<div class="things shadow rounded p-4 mt-5 bg-warning">
|
<div class="things shadow rounded p-4 mt-5 bg-warning">
|
||||||
{{ if .Site.Params.usedefaultlogos }}
|
<i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
|
||||||
<svg width="3em" height="3em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
|
||||||
<path
|
|
||||||
d="M255.03 261.65c6.25 6.25 16.38 6.25 22.63 0l11.31-11.31c6.25-6.25 6.25-16.38 0-22.63L253.25 192l35.71-35.72c6.25-6.25 6.25-16.38 0-22.63l-11.31-11.31c-6.25-6.25-16.38-6.25-22.63 0l-58.34 58.34c-6.25 6.25-6.25 16.38 0 22.63l58.35 58.34zm96.01-11.3l11.31 11.31c6.25 6.25 16.38 6.25 22.63 0l58.34-58.34c6.25-6.25 6.25-16.38 0-22.63l-58.34-58.34c-6.25-6.25-16.38-6.25-22.63 0l-11.31 11.31c-6.25 6.25-6.25 16.38 0 22.63L386.75 192l-35.71 35.72c-6.25 6.25-6.25 16.38 0 22.63zM624 416H381.54c-.74 19.81-14.71 32-32.74 32H288c-18.69 0-33.02-17.47-32.77-32H16c-8.8 0-16 7.2-16 16v16c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64v-16c0-8.8-7.2-16-16-16zM576 48c0-26.4-21.6-48-48-48H112C85.6 0 64 21.6 64 48v336h512V48zm-64 272H128V64h384v256z" />
|
|
||||||
</svg>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<div class="p-2 font-weight-bold">
|
<div class="p-2 font-weight-bold">
|
||||||
{{ if .Site.Params.thing1 }}
|
{{ .title }}
|
||||||
{{ .Site.Params.thing1 }}
|
</div>
|
||||||
|
<div class="py-4 things-text">
|
||||||
|
{{ .description }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
<div class="py-4 things-text text-primary">
|
|
||||||
{{ if .Site.Params.thing1_des }}
|
|
||||||
{{ .Site.Params.thing1_des }}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Thing 2 -->
|
|
||||||
<div class="col-lg-3">
|
|
||||||
<div class="things shadow rounded p-4 mt-5 bg-warning">
|
|
||||||
{{ if .Site.Params.usedefaultlogos }}
|
|
||||||
<svg width="3em" height="3em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
|
||||||
<path
|
|
||||||
d="M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z" />
|
|
||||||
</svg>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<div class="p-2 font-weight-bold">
|
|
||||||
{{ if .Site.Params.thing2 }}
|
|
||||||
{{ .Site.Params.thing2 }}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
<div class="py-4 things-text text-primary">
|
|
||||||
{{ if .Site.Params.thing2_des }}
|
|
||||||
{{ .Site.Params.thing2_des }}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Thing 3 -->
|
|
||||||
<div class="col-lg-3">
|
|
||||||
<div class="things shadow rounded p-4 mt-5 bg-warning">
|
|
||||||
{{ if .Site.Params.usedefaultlogos }}
|
|
||||||
<svg width="3em" height="3em" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
|
||||||
<path
|
|
||||||
d="M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" />
|
|
||||||
</svg>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<div class="p-2 font-weight-bold">
|
|
||||||
{{ if .Site.Params.thing3 }}
|
|
||||||
{{ .Site.Params.thing3 }}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
<div class="py-4 things-text text-primary">
|
|
||||||
{{ if .Site.Params.thing3_des }}
|
|
||||||
{{ .Site.Params.thing3_des }}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,122 +0,0 @@
|
|||||||
{{ $backgroundImage:= "images/background.png" }}
|
|
||||||
{{ $backimg:= "images/guru.svg" }}
|
|
||||||
|
|
||||||
{{ if .Site.Params.custombackground }}
|
|
||||||
{{ $backgroundImage = .Site.Params.background }}
|
|
||||||
{{ $backimg = .Site.Params.backimg }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<div class="home" style="background-image: url('{{ $backgroundImage | absURL }}');">
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-light bg-transperant">
|
|
||||||
<div class="container">
|
|
||||||
<a class="navbar-brand text-dark" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
|
|
||||||
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" id="navbarNavDropdown">
|
|
||||||
<ul class="navbar-nav ml-auto">
|
|
||||||
<li class="nav-item navbar-text">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#home" aria-label="home">Home</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item navbar-text">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#about" aria-label="about">About</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item navbar-text">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#projects" aria-label="projects">Projects</a>
|
|
||||||
</li>
|
|
||||||
{{ if .Site.Params.contact }}
|
|
||||||
<li class="nav-item navbar-text">
|
|
||||||
<a class="nav-link text-dark" href="{{ .Site.BaseURL }}#contact" aria-label="contact">Contact</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ range site.Params.customMenus }}
|
|
||||||
<li class="nav-item navbar-text">
|
|
||||||
<a class="nav-link text-dark" href="{{.Url}}" aria-label="{{ .name }}">{{ .name }}</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<div class="row justify-content-center" id="home">
|
|
||||||
<div class="text-white col-lg-8">
|
|
||||||
<div class="name-intro">
|
|
||||||
Hi there, I'm
|
|
||||||
<h1 class="name">{{ .Site.Params.name }}</h1>
|
|
||||||
|
|
||||||
<!-- socialmedia -->
|
|
||||||
<div class="social">
|
|
||||||
{{ if .Site.Params.github }}
|
|
||||||
<a class="text-white" href="{{ .Site.Params.github }}" aria-label="github">
|
|
||||||
<svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 448 512">
|
|
||||||
<path
|
|
||||||
d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .Site.Params.linkedin }}
|
|
||||||
<a class="text-white" href="{{ .Site.Params.linkedin }}" aria-label="linkedin">
|
|
||||||
<svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 448 512">
|
|
||||||
<path
|
|
||||||
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .Site.Params.twitter }}
|
|
||||||
<a class="text-white" href="{{ .Site.Params.twitter }}" aria-label="twitter">
|
|
||||||
<svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 448 512">
|
|
||||||
<path
|
|
||||||
d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .Site.Params.instagram }}
|
|
||||||
<a class="text-white" href="{{ .Site.Params.instagram }}" aria-label="instagram">
|
|
||||||
<svg width="1.1em" height="1.1em" fill="currentColor" xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 448 512">
|
|
||||||
<path
|
|
||||||
d="M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- image -->
|
|
||||||
<div class="row profile text-center">
|
|
||||||
<br>
|
|
||||||
<img src="{{ .Site.Params.profile | default "/images/avatar-370-456322.webp"}}" width="150px"
|
|
||||||
class="rounded-circle img-fluid" alt="{{ .Site.Params.name }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-lg-3 home-content d-none d-md-block" style="background-image: url('{{ $backimg | absURL }}');"></div>
|
|
||||||
</div>
|
|
||||||
<div class="row know-more ">
|
|
||||||
<div class="container p-3 rounded text-center">
|
|
||||||
<a href="#about" class="text-info">
|
|
||||||
know more
|
|
||||||
<br>
|
|
||||||
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-chevron-down" fill="currentColor"
|
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path fill-rule="evenodd"
|
|
||||||
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
<section>
|
|
||||||
<div class="projects p-3" id="projects">
|
|
||||||
<div class="container">
|
|
||||||
<div class="project-heading text-center text-white container pb-3">Projects</div>
|
|
||||||
<div class="pt-5 pb-5">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-12">
|
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active">
|
|
||||||
<div class="row justify-content-center">
|
|
||||||
{{ range .Site.Params.projects }}
|
|
||||||
<div class="col-md-4 mb-3">
|
|
||||||
<div class="card">
|
|
||||||
<img class="img-fluid" src="{{ .image }}" alt="{{ .title }}">
|
|
||||||
<div class="card-body">
|
|
||||||
<div class="card-title">{{ .title }}</div>
|
|
||||||
<p class="card-text">{{ .description}}</p>
|
|
||||||
|
|
||||||
{{ if .secoundarylink}}
|
|
||||||
<a href="{{ .secoundaryurl }}" class="btn btn-info" aria-label="{{ .secoundaryurlname }}">{{ .secoundaryurlname }}</a>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ if .sourceurl }}
|
|
||||||
<a class="text-dark" href="{{ .sourceurl }}" aria-label="github">
|
|
||||||
<svg width="2em" height="2em" fill="currentColor"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
||||||
<path
|
|
||||||
d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
[build]
|
||||||
|
publish = "public"
|
||||||
|
command = "hugo --gc --minify"
|
||||||
|
|
||||||
|
[context.production.environment]
|
||||||
|
HUGO_VERSION = "0.76.5"
|
||||||
|
HUGO_ENV = "production"
|
||||||
|
HUGO_ENABLEGITINFO = "true"
|
||||||
|
|
||||||
|
[context.split1]
|
||||||
|
command = "hugo --gc --minify --enableGitInfo"
|
||||||
|
|
||||||
|
[context.split1.environment]
|
||||||
|
HUGO_VERSION = "0.76.5"
|
||||||
|
HUGO_ENV = "production"
|
||||||
|
|
||||||
|
[context.deploy-preview]
|
||||||
|
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
|
||||||
|
|
||||||
|
[context.deploy-preview.environment]
|
||||||
|
HUGO_VERSION = "0.76.5"
|
||||||
|
|
||||||
|
[context.branch-deploy]
|
||||||
|
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
|
||||||
|
|
||||||
|
[context.branch-deploy.environment]
|
||||||
|
HUGO_VERSION = "0.76.5"
|
||||||
|
|
||||||
|
[context.next.environment]
|
||||||
|
HUGO_ENABLEGITINFO = "true"
|
||||||
@@ -1,121 +0,0 @@
|
|||||||
article {
|
|
||||||
font-family: 'Peddana', serif;
|
|
||||||
line-height: 1.3;
|
|
||||||
font-size: 27px;
|
|
||||||
}
|
|
||||||
|
|
||||||
article blockquote {
|
|
||||||
margin: 0 !;
|
|
||||||
border-left: 4px solid #248aaa !important;
|
|
||||||
background-color: #248baa15 !important;
|
|
||||||
padding: 0.3rem !important;
|
|
||||||
padding-left: 1rem !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
article blockquote>p {
|
|
||||||
color: #3c4858 !important;
|
|
||||||
margin-top: 0.5rem !important;
|
|
||||||
margin-bottom: 0.5rem !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
article h1,
|
|
||||||
h2 {
|
|
||||||
margin-top: 1.4rem;
|
|
||||||
font-size: 32px;
|
|
||||||
border-left: 4px solid #77ace9 !important;
|
|
||||||
background-color: #b2cad43a !important;
|
|
||||||
padding: 0.3rem !important;
|
|
||||||
padding-left: 1rem !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
article h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
margin-top: 1.3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
article table {
|
|
||||||
border-radius: 0.1rem;
|
|
||||||
background: #e5e9f2;
|
|
||||||
border: 1px solid #c0ccda;
|
|
||||||
padding: 0.1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
article table tr {
|
|
||||||
height: 40px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
article table th,
|
|
||||||
td {
|
|
||||||
padding: 0.5rem;
|
|
||||||
border-left: 1px solid #8392a5;
|
|
||||||
border-bottom: 1px solid #8392a5;
|
|
||||||
}
|
|
||||||
|
|
||||||
article table thead tr {
|
|
||||||
background: #248aaa;
|
|
||||||
color: #e5e9f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
article tbody tr:nth-child(odd) {
|
|
||||||
background-color: #e5e9f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
article tbody tr:hover {
|
|
||||||
background: #c0ccda;
|
|
||||||
}
|
|
||||||
|
|
||||||
article img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
article caption,
|
|
||||||
figcaption {
|
|
||||||
caption-side: bottom;
|
|
||||||
text-align: center;
|
|
||||||
color: #8392a5;
|
|
||||||
}
|
|
||||||
|
|
||||||
article pre {
|
|
||||||
margin: 5px;
|
|
||||||
padding: 5%;
|
|
||||||
font-size: 18px;
|
|
||||||
max-height: 400px;
|
|
||||||
border-radius: 2%;
|
|
||||||
background-color: #1f618d !important;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
article pre>code {
|
|
||||||
padding: 10px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
article a.header-anchor {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #1c2d41;
|
|
||||||
}
|
|
||||||
|
|
||||||
article a.header-anchor i {
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #3c4858;
|
|
||||||
display: none;
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
article a.header-anchor:hover i {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
article a.header-anchor code {
|
|
||||||
color: #e83e8c;
|
|
||||||
}
|
|
||||||
|
|
||||||
article kbd {
|
|
||||||
background-color: #248aaa !important;
|
|
||||||
color: #f9fafc;
|
|
||||||
}
|
|
||||||
|
|
||||||
article mark {
|
|
||||||
background-color: #ffc21280;
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
/*footer*/
|
|
||||||
.footer {
|
|
||||||
background: #f2f2f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-text {
|
|
||||||
font-size: 17px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-site {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
@@ -1,202 +0,0 @@
|
|||||||
/*home*/
|
|
||||||
|
|
||||||
.home {
|
|
||||||
height: auto;
|
|
||||||
padding: 0;
|
|
||||||
padding-bottom: 0;
|
|
||||||
margin: 0;
|
|
||||||
background-size: cover;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
.name {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.name-intro {
|
|
||||||
font-size: 20PX;
|
|
||||||
padding-top: 10%;
|
|
||||||
padding-left: 17%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.profile {
|
|
||||||
float: right;
|
|
||||||
padding-right: 22%;
|
|
||||||
padding-bottom: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.know-more {
|
|
||||||
padding-bottom: 15%;
|
|
||||||
font-family: cursive;
|
|
||||||
}
|
|
||||||
|
|
||||||
.know-more a:hover {
|
|
||||||
text-decoration-line: none;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.home-content {
|
|
||||||
padding-top: 0;
|
|
||||||
padding-left: 18%;
|
|
||||||
padding-right: 5%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
.social a:hover {
|
|
||||||
text-decoration-line: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 992px) {
|
|
||||||
.profile {
|
|
||||||
padding-right: 35%;
|
|
||||||
text-align: center !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
|
||||||
.home {
|
|
||||||
height: auto;
|
|
||||||
background-position: left bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
.name-intro {
|
|
||||||
height: 200px;
|
|
||||||
padding-left: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.home-content {
|
|
||||||
height: 30%;
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.know-more {
|
|
||||||
padding-top: 10%;
|
|
||||||
padding-left: 20%;
|
|
||||||
padding-right: 20%;
|
|
||||||
padding-bottom: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.know-more a {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* recent posts */
|
|
||||||
.recent-posts {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* do things */
|
|
||||||
|
|
||||||
.do-things {
|
|
||||||
background-color: #e5e9f2;
|
|
||||||
height: auto;
|
|
||||||
padding: 0;
|
|
||||||
padding-bottom: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.things-i-do {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.things {
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.things-text {
|
|
||||||
height: 100px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
|
||||||
.do-things-card {
|
|
||||||
padding-left: 15%;
|
|
||||||
padding-right: 15%;
|
|
||||||
padding-bottom: 15%;
|
|
||||||
padding-top: 0%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* about */
|
|
||||||
|
|
||||||
.about {
|
|
||||||
height: auto;
|
|
||||||
background-color: #e5e9f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jop {
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-me {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-content {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-content a:hover {
|
|
||||||
text-decoration-line: none;
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
|
||||||
.about {
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Skill
|
|
||||||
.skill {
|
|
||||||
height: 80vh;
|
|
||||||
background-color: #e5e9f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.skill-heading {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Projects */
|
|
||||||
.projects {
|
|
||||||
height: auto;
|
|
||||||
background-color: #A89C94FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.project-heading {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-title {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* recent posts */
|
|
||||||
.blog-back {
|
|
||||||
background-color: #ebb951;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-card a:hover {
|
|
||||||
text-decoration-line: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-hover :hover {
|
|
||||||
background-color: #17a2b8;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* contact */
|
|
||||||
.contact-head {
|
|
||||||
font-family: 'Alata', sans-serif;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 656 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 1.0 MiB |
@@ -1,84 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
width="350px" height="302px" viewBox="0 0 350 302" style="enable-background:new 0 0 350 302;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#F9C758;}
|
|
||||||
.st1{fill:#FAFAFA;}
|
|
||||||
.st2{fill:#9B9B9B;}
|
|
||||||
.st3{fill:#B3B3B3;}
|
|
||||||
.st4{fill:#CFCFCF;}
|
|
||||||
.st5{fill:#FFFFFF;}
|
|
||||||
.st6{fill:#464646;}
|
|
||||||
.st7{fill:#FC86B4;}
|
|
||||||
.st8{fill:#D66DF7;}
|
|
||||||
.st9{fill:#D3D2D1;}
|
|
||||||
.st10{fill:#FBC39D;}
|
|
||||||
.st11{fill:#9DF9E1;}
|
|
||||||
.st12{fill:#565656;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M288.9,160.7h-16.1c-0.3,0-0.5,0.2-0.5,0.5v12.2c0,3.6,2.9,6.4,6.4,6.4h4.3c3.6,0,6.4-2.9,6.4-6.4v-12.2
|
|
||||||
C289.4,161,289.2,160.7,288.9,160.7z"/>
|
|
||||||
<path class="st0" d="M287,177.8c3.6-2,9.9-8.1,8.8-12.4c-0.3-1.1-1-2-2-2.5c-2.4-1.1-5.8,0.2-6.2,0.4l1.1,2.4
|
|
||||||
c0.8-0.3,2.9-0.9,3.8-0.4c0.2,0.1,0.4,0.2,0.5,0.7c0.6,2.5-4.3,7.7-7.5,9.5L287,177.8z"/>
|
|
||||||
</g>
|
|
||||||
<path class="st1" d="M213.4,165.1H77.9c-1.8,0-3.3-1.5-3.3-3.3V83.5c0-1.8,1.5-3.3,3.3-3.3h135.5c1.8,0,3.3,1.5,3.3,3.3v78.3
|
|
||||||
C216.7,163.6,215.2,165.1,213.4,165.1z"/>
|
|
||||||
<path class="st2" d="M161.7,176.2c-0.5-1.4-0.7-2.8-0.7-4.3v-6.8h-15.3H145h-13.7v6.8c0,1.5-0.2,2.9-0.7,4.3c-0.7,1.9-2.1,4-4.6,4
|
|
||||||
h19h0.7h20.6C163.8,180.2,162.4,178.1,161.7,176.2z"/>
|
|
||||||
<path class="st3" d="M300.3,189.3H65.8c-1.2,0-2.1-0.9-2.1-2.1v-4.9c0-1.2,0.9-2.1,2.1-2.1h234.4c1.2,0,2.1,0.9,2.1,2.1v4.9
|
|
||||||
C302.4,188.4,301.5,189.3,300.3,189.3z"/>
|
|
||||||
<path class="st4" d="M213.4,151.6H77.9c-1.8,0-3.3-1.5-3.3-3.3V70c0-1.8,1.5-3.3,3.3-3.3h135.5c1.8,0,3.3,1.5,3.3,3.3v78.3
|
|
||||||
C216.7,150.1,215.2,151.6,213.4,151.6z"/>
|
|
||||||
<rect x="80.1" y="71.3" class="st5" width="131.3" height="74.7"/>
|
|
||||||
<path class="st5" d="M280.4,156.1c0.5-0.2,1.1-0.5,1.5-0.8c0.5-0.3,0.9-0.8,1.1-1.2c0.2-0.5,0.2-0.9-0.1-1.3c-0.3-0.4-0.7-0.7-1.1-1
|
|
||||||
c-0.5-0.3-1-0.5-1.5-0.7c-0.2-0.1-0.6-0.2-0.9-0.3s-0.6-0.3-0.9-0.5c-1.2-0.7-2.3-1.6-3.2-2.8c-0.9-1.1-1.6-2.5-2-3.9
|
|
||||||
c-0.4-1.5-0.6-3-0.3-4.7c0.2-0.8,0.4-1.7,0.9-2.6c0.4-0.9,1.1-1.7,1.9-2.4s1.8-1.2,2.8-1.5s2-0.4,3-0.5h1c2.3,0,4.3,1.8,4.3,4.2
|
|
||||||
c0,2.3-1.8,4.3-4.2,4.3c-0.7,0-1.3-0.2-1.9-0.4c-0.5-0.2-0.8-0.4-1.1-0.4c-0.3,0-0.8,0.3-1.2,0.9c-0.4,0.6-0.6,1.5-0.6,2.4
|
|
||||||
s0.1,1.9,0.5,2.8c0.4,0.9,0.9,1.8,1.6,2.6c0.2,0.2,0.4,0.4,0.6,0.5c0.2,0.2,0.4,0.3,0.7,0.5c0.5,0.4,1,0.8,1.5,1.3s0.9,1,1.2,1.8
|
|
||||||
c0.1,0.4,0.2,0.8,0.1,1.1c-0.1,0.4-0.2,0.7-0.4,1c-0.4,0.6-0.9,0.9-1.4,1.3c-0.5,0.3-1.1,0.6-1.6,0.9c-0.1,0.1-0.3,0-0.3-0.1
|
|
||||||
C280.2,156.3,280.3,156.1,280.4,156.1L280.4,156.1L280.4,156.1z"/>
|
|
||||||
<path class="st6" d="M108.6,132.2c0.1,0.1,0.3,0,0.4-0.1l2.5-2.5l1.8,3.6c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0,0.1,0,0.2,0l1.5-0.8
|
|
||||||
c0.1,0,0.1-0.1,0.2-0.2c0-0.1,0-0.2,0-0.3l-1.7-3.3h3.3c0.1,0,0.3-0.1,0.3-0.2c0.1-0.1,0-0.3-0.1-0.4l-8.3-7.6
|
|
||||||
c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0.1-0.2,0.2-0.2,0.3v11.1C108.4,132,108.5,132.1,108.6,132.2z"/>
|
|
||||||
<rect x="92.8" y="87.5" class="st7" width="20.7" height="10.5"/>
|
|
||||||
<rect x="118.5" y="87.5" class="st8" width="56.3" height="10.5"/>
|
|
||||||
<rect x="92.8" y="105.4" class="st0" width="48.5" height="3"/>
|
|
||||||
<rect x="92.8" y="113.2" class="st0" width="42.6" height="3"/>
|
|
||||||
<g>
|
|
||||||
<path class="st9" d="M277,76.2c-13.7,0-24.8-11.1-24.8-24.8s11.1-24.8,24.8-24.8s24.8,11.1,24.8,24.8
|
|
||||||
C301.9,65.1,290.7,76.2,277,76.2z M277,30.1c-11.7,0-21.3,9.5-21.3,21.3s9.5,21.3,21.3,21.3s21.3-9.5,21.3-21.3
|
|
||||||
S288.7,30.1,277,30.1z"/>
|
|
||||||
<path class="st9" d="M277.6,52.9h-16.1c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9h15.2v-16c0-0.5,0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9
|
|
||||||
v16.8C278.5,52.4,278.1,52.9,277.6,52.9z"/>
|
|
||||||
</g>
|
|
||||||
<path class="st10" d="M186.1,176.2L111,181c-6.5,0.4-12-4.5-12.5-11l0,0c-0.4-6.5,4.5-12,11-12.5l75.1-4.8c3.9-0.3,7.3,2.7,7.6,6.7
|
|
||||||
l0.6,9.1C193,172.5,190,175.9,186.1,176.2z"/>
|
|
||||||
<path class="st11" d="M138.2,131.5L101,157.7c-4.9,3.5-6.2,10.2-2.9,15.2l0,0c2.5,3.8,7.1,5.8,11.6,4.9c16.4-3.3,54-11,53.6-12.3
|
|
||||||
c-0.3-1-4.5-15.9-7.8-27.9C153.3,130.2,144.5,127.1,138.2,131.5z"/>
|
|
||||||
<path class="st10" d="M163.4,176.2l75.1,4.8c6.5,0.4,12-4.5,12.5-11l0,0c0.4-6.5-4.5-12-11-12.5l-75.1-4.8c-3.9-0.3-7.3,2.7-7.6,6.7
|
|
||||||
l-0.6,9.1C156.5,172.5,159.5,175.9,163.4,176.2z"/>
|
|
||||||
<path class="st11" d="M211.3,131.5l37.2,26.2c4.9,3.5,6.2,10.2,2.9,15.2l0,0c-2.5,3.8-7.1,5.8-11.6,4.9c-16.4-3.3-54-11-53.6-12.3
|
|
||||||
c0.3-1,4.5-15.9,7.8-27.9C196.2,130.2,205,127.1,211.3,131.5z"/>
|
|
||||||
<g>
|
|
||||||
<ellipse class="st6" cx="145.6" cy="91.2" rx="7.3" ry="7.6"/>
|
|
||||||
<ellipse class="st6" cx="200.6" cy="91.2" rx="7.3" ry="7.6"/>
|
|
||||||
<path class="st6" d="M170.9,131.7L170.9,131.7c0.7,0.1,1.5,0.2,2.2,0.2l0,0c2.3,0,4.6-0.3,6.7-0.9c0,0,0,0,0-0.1
|
|
||||||
c11.9-3.1,20.7-14.3,20.7-27.7V69.8c0-15.8-12.3-13.3-27.5-13.3l0,0c-15.2,0-27.5-2.5-27.5,13.3v33.5
|
|
||||||
C145.6,118.2,156.7,130.5,170.9,131.7z"/>
|
|
||||||
<path class="st6" d="M195,92.2v9h-9.7c0,0-2.4-6.5-12.2-6.5s-12.2,6.5-12.2,6.5h-9.7v-9c0-3.6-3.3-4.7-5.5-5.1v16.1
|
|
||||||
c0,15,11.1,27.3,25.2,28.4l0,0c0.8,0.1,1.5,0.1,2.3,0.1s1.5,0,2.3-0.1l0,0c14.1-1.2,25.2-13.5,25.2-28.4V87.1
|
|
||||||
C198.4,87.5,195,88.7,195,92.2z"/>
|
|
||||||
<path class="st6" d="M193.3,45.5c-7.5-1.1-19.2-1.2-27.8,5.8c-0.2,0.2-0.4,0.4-0.5,0.5h-6.8c-7,0-12.6,4.9-12.6,11V69v14.2v17.4
|
|
||||||
c1.3,0,2.3-1.1,2.3-2.4V73.9c0,0,0.4-7.7,7.4-7.7h16h0.1h18.2c7.5,0,8.4,6.8,8.5,7.7v24.5c0,1.3,1,2.4,2.3,2.4V83.4V69.1v-5.5
|
|
||||||
l0.1-9.5C200.7,49.8,197.5,46.1,193.3,45.5z"/>
|
|
||||||
</g>
|
|
||||||
<rect x="147.1" y="62.1" class="st6" width="53.1" height="46"/>
|
|
||||||
<path class="st12" d="M188,275.3h-30c-21,0-37.9-18.3-37.9-40.9l9.5-82c3.3-21.9,23.5-35.9,44-35.9l0,0c20.7,0,41.1,14.4,44.1,36.5
|
|
||||||
l8.3,81.4C226,256.9,209,275.3,188,275.3z"/>
|
|
||||||
<path class="st4" d="M180,299.2h-13.6c-1.5,0-2.7-1.2-2.7-2.7V187.2c0-1.5,1.2-2.7,2.7-2.7H180c1.5,0,2.7,1.2,2.7,2.7v109.3
|
|
||||||
C182.7,298,181.5,299.2,180,299.2z"/>
|
|
||||||
<path class="st6" d="M184.5,194.7H161c-2.9,0-5.2-2.3-5.2-5.2v-9.9c0-2.9,2.3-5.2,5.2-5.2h23.5c2.9,0,5.2,2.3,5.2,5.2v9.9
|
|
||||||
C189.8,192.4,187.4,194.7,184.5,194.7z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 59 KiB |
@@ -1,9 +1,9 @@
|
|||||||
name = "hugo-profile"
|
name = "hugo-profile"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
licenselink = "https://github.com/gurusabarish/hugo-profile/blob/master/LICENSE"
|
licenselink = "https://github.com/gurusabarish/hugo-profile/blob/master/LICENSE"
|
||||||
description = "A high performance hugo theme for personal portfolio"
|
description = "The fastest(100) hugo theme for personal portfolio and blog."
|
||||||
homepage = "https://hugo-profile.netlify.com"
|
homepage = "https://hugo-profile.netlify.com"
|
||||||
tags = ["Responsive","Blog", "Portfolio", "Personal website"]
|
tags = ["Responsive","Blog", "Portfolio", "Personal", "Minimal", "Clean", "Fast", "Single page", "Seo", "Google analytics", "100"]
|
||||||
features = ["Highly customizable"]
|
features = ["Highly customizable"]
|
||||||
min_version = "0.68.0"
|
min_version = "0.68.0"
|
||||||
|
|
||||||
|
|||||||