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

README.md - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 302e91f7f5ad6a5fe0dab8c533e4d1cc681701eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# hugo-profile

A simple hugo theme for personal portfolio
## Performance

![Performance of hugo-profile theme](https://github.com/gurusabarish/hugo-profile/blob/master/static/images/performance.png)

## Demo

![Thumpnail](https://github.com/gurusabarish/hugo-profile/blob/master/images/tn.png)

### Site: [Hugo-profile](https://hugo-profile.netlify.com)


## Features
- Minimalist Design
- Fully Responsive
- Google Analytics Support
- Disqus Comment Support
- Contact form using [Formpree](https://formspree.io/)



## Requirements

- Hugo Version 0.68.0 or higher



## Installation

- [Install Hugo](https://gohugo.io/overview/installing)

- Create your site if you haven't already

```console
hugo new site my-site -f=yaml
cd my-site
git init
```

- Add the theme as git sub-module

```console
git submodule add https://github.com/gurusabarish/hugo-profile.git themes/hugo-profile
```

>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.


## Configuration

Configure your `config.yaml` file of your site as below:

```yaml
baseURL: "https://example.com"
languageCode: "en-us"
title: "Hugo-profile"
theme: "hugo-profile"

Paginate: 3

taxonomies:
  tag: "tags"
  category: "categories"
  
  
params:
  favicon: "/images/hugo.png"
  description: "Portfolio and personal blog of gurusabarish"
  googleanalytics: "UA-167646412-8"
  disqus: ""
  
  # Contact
  contact: true
  action: ""
  emailname: ""
  messagename: ""
  
  # Navbar Menus
  customMenus:
  - name: "Blog"
    url: "https://example.com/blog"
 
  # Home
  name: "Gurusabarish"
  profile: "/images/avatar-370-456322.webp"
  github: "https://github.com/gurusabarish"
  linkedin: "https://linkedin.com/in/gurusabarish"
  twitter: "https://twitter.com/gurusabarishh"
  instagram: "https://instagram.com/gurusabarishh"

  # Do things { Please change the svg icons width="3em" height="3em" }
  thing1: "Python"
  thing2: "Machine learning"
  thing3: "Build 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
  profile_image: "/images/gurusabarish.jpg"
  jop: "Web developer"
  jops_about: "web developer and ML engineer"
  resume: ""
  
  projects:
  - title: "Project name"
    image: "/images/project.png"
    description:  "This is your description"
    url: "https://github.com"
  

Author:
  name: "Gurusabarish"
  website: "https://github.com/gurusabarish"
```

<b>Use Yaml as config file</b>

You can just copy the content for `config.yaml` files from `theme/toha/exampleSite/config.yaml`.


## Contributing

> Contributers are always welcome :heart: