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

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGURU SABARISH <gurusabarisha@gmail.com>2020-09-13 16:00:19 +0300
committerGitHub <noreply@github.com>2020-09-13 16:00:19 +0300
commit3ae93318bb062b7782e34977ccaa48b53f57b1b3 (patch)
treec69954f62339add21233295a049accd654a4aeaf /README.md
parent131a0982612727d318d04ac37f99a382d48af631 (diff)
add readme file
Diffstat (limited to 'README.md')
-rw-r--r--README.md88
1 files changed, 88 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ba668d9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,88 @@
+# <div align="center">hugo-profile</div>
+<div align="center">A simple hugo theme for personal portfolio</div>
+
+<img align="center" src="https://github.com/gurusabarish/hugo-profile/blob/master/static/images/preview.PNG" alt="guru sabarish" />
+
+### Demo Site: [Hugo-profile](https://hugo-profile.netlify.com)
+
+## Installation
+
+- 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://hugo-blog0.netlify.app/"
+languageCode: "en-us"
+title: "Hugo-blog"
+theme: "hugo-profile"
+
+params:
+ favicon: "/images/hugo.png"
+ description: "Portfolio and personal blog of gurusabarish"
+
+ # Navbar Menus
+ customMenus:
+ - name: "Blog"
+ url: "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:
+