Add exampleSite
This commit is contained in:
parent
6bb8705d8e
commit
43e1a2a044
7 changed files with 268 additions and 0 deletions
18
exampleSite/config.yaml
Normal file
18
exampleSite/config.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
baseURL: http://example.org/
|
||||||
|
languageCode: en-us
|
||||||
|
title: "Toha"
|
||||||
|
theme: "toha"
|
||||||
|
|
||||||
|
# Allow raw html in markdown file
|
||||||
|
markup:
|
||||||
|
goldmark:
|
||||||
|
renderer:
|
||||||
|
unsafe: true
|
||||||
|
|
||||||
|
# Enable Google Analytics
|
||||||
|
# googleAnalytics: UA-12345
|
||||||
|
|
||||||
|
# Enable Disqus forum
|
||||||
|
# disqusShortname: does-not-exist
|
||||||
|
|
||||||
|
# Enable global emoji support
|
57
exampleSite/data/about.yaml
Normal file
57
exampleSite/data/about.yaml
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
# your designation
|
||||||
|
designation: Software Engineer
|
||||||
|
# your company information
|
||||||
|
company:
|
||||||
|
name: Example Co.
|
||||||
|
url: "https://www.example.com"
|
||||||
|
|
||||||
|
# your resume
|
||||||
|
resume: "assets/files/resume.pdf"
|
||||||
|
|
||||||
|
# a summary about you
|
||||||
|
summary: 'I am a passionate software engineer with x years of working
|
||||||
|
experience. I built OSS tools for Kubernetes using GO. My tools helps people to
|
||||||
|
deploy their workloads in Kuberenetes. Sometimes, I work on some fun projects such as writing a theme etc.'
|
||||||
|
|
||||||
|
# your social links
|
||||||
|
# give as many as you want. use font-awesome for the icons.
|
||||||
|
socialLinks:
|
||||||
|
- name: Email
|
||||||
|
icon: "fas fa-envelope"
|
||||||
|
url: "example@gmail.com"
|
||||||
|
|
||||||
|
- name: Github
|
||||||
|
icon: "fab fa-github"
|
||||||
|
url: "https://www.github.com/example"
|
||||||
|
|
||||||
|
- name: Stackoverflow
|
||||||
|
icon: "fab fa-stack-overflow"
|
||||||
|
url: "#"
|
||||||
|
|
||||||
|
- name: LinkedIn
|
||||||
|
icon: "fab fa-linkedin"
|
||||||
|
url: "#"
|
||||||
|
|
||||||
|
- name: Twitter
|
||||||
|
icon: "fab fa-twitter"
|
||||||
|
url: "#"
|
||||||
|
|
||||||
|
- name: Facebook
|
||||||
|
icon: "fab fa-facebook"
|
||||||
|
|
||||||
|
# your soft skills
|
||||||
|
# give the percentage between 50 to 100 with 5 interval.
|
||||||
|
# currently supported color: blue, yellow, pink, green
|
||||||
|
softSkills:
|
||||||
|
- name: Leadership
|
||||||
|
percentage: 85
|
||||||
|
color: blue
|
||||||
|
- name: Team Work
|
||||||
|
percentage: 90
|
||||||
|
color: yellow
|
||||||
|
- name: Communication
|
||||||
|
percentage: 85
|
||||||
|
color: pink
|
||||||
|
- name: Hard Working
|
||||||
|
percentage: 85
|
||||||
|
color: green
|
14
exampleSite/data/achievements.yaml
Normal file
14
exampleSite/data/achievements.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Your achievements achievements
|
||||||
|
achievements:
|
||||||
|
- title: Best Presenter
|
||||||
|
image: assets/images/achievements/presenter.jpg
|
||||||
|
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||||
|
- title: Champion
|
||||||
|
image: assets/images/achievements/sport.jpg
|
||||||
|
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||||
|
- title: Graduation
|
||||||
|
image: assets/images/achievements/graduation-cap.jpg
|
||||||
|
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||||
|
- title: Award Winner
|
||||||
|
image: assets/images/achievements/woman-winner.jpg
|
||||||
|
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
43
exampleSite/data/experiences.yaml
Normal file
43
exampleSite/data/experiences.yaml
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# Your experiences
|
||||||
|
experiences:
|
||||||
|
- designation: Software Engineer
|
||||||
|
company:
|
||||||
|
name: Example Co.
|
||||||
|
url: "https://www.example.com"
|
||||||
|
location: Dhaka Branch
|
||||||
|
# company overview
|
||||||
|
overview: Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed ipsum deserunt dignissimos iure incidunt porro sapiente adipisci neque, eveniet quam.
|
||||||
|
start: Nov 2017
|
||||||
|
# don't provide end date if you are currently working there. It will be replaced by "Present"
|
||||||
|
# end: Dec 2020
|
||||||
|
# give some points about what was your responsibilities at the company.
|
||||||
|
responsibilities:
|
||||||
|
- Design, develop and manage disaster recovery tool Stash that backup Kubernetes volumes, databases and cluster's resource definition.
|
||||||
|
- My another responsibilities.
|
||||||
|
- My more responsibilities.
|
||||||
|
|
||||||
|
- designation: Software Engineer
|
||||||
|
company:
|
||||||
|
name: PreExample Co.
|
||||||
|
url: "https://www.preexample.com"
|
||||||
|
location: Nowhere
|
||||||
|
overview: PreExample Co. is gateway company to enter into Example co. So, nothing special here.
|
||||||
|
start: March 2016
|
||||||
|
end: May 2017
|
||||||
|
responsibilities:
|
||||||
|
- Write lots of example codes.
|
||||||
|
- Read lots of examples.
|
||||||
|
- See lots of example videos.
|
||||||
|
|
||||||
|
- designation: Intern
|
||||||
|
company:
|
||||||
|
name: Intern Counting Company (ICC).
|
||||||
|
url: "https://www.intern.com"
|
||||||
|
location: Intern Land
|
||||||
|
overview: Intern counting Company (ICC) is responsible for counting worldwide intern Engineer.
|
||||||
|
start: Jun 2015
|
||||||
|
end: Jan 2016
|
||||||
|
responsibilities:
|
||||||
|
- Count lost of interns.
|
||||||
|
- Count more interns.
|
||||||
|
- Count myself as intern.
|
54
exampleSite/data/projects.yaml
Normal file
54
exampleSite/data/projects.yaml
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
# filter buttons
|
||||||
|
buttons:
|
||||||
|
- name: All
|
||||||
|
filter: "all"
|
||||||
|
- name: Professional
|
||||||
|
filter: "professional"
|
||||||
|
- name: Academic
|
||||||
|
filter: "academic"
|
||||||
|
- name: Hobby
|
||||||
|
filter: "hobby"
|
||||||
|
|
||||||
|
# your projects
|
||||||
|
projects:
|
||||||
|
- name: Kubernetes
|
||||||
|
logo: assets/images/projects/kubernetes.png
|
||||||
|
role: Contributor
|
||||||
|
timeline: "March 2018 - Present"
|
||||||
|
repo: https://github.com/kubernetes/kubernetes # if your project is public repo on github, then provide this link. it will show star count.
|
||||||
|
#url: "" # if your project is not a public repo but it has a website, or any external details url then provide it here. don't provide "repo" and "url" simultaneously.
|
||||||
|
summary: Production-Grade Container Scheduling and Management .
|
||||||
|
tags: ["professional", "kubernetes", "cloud"]
|
||||||
|
|
||||||
|
- name: Tensorflow
|
||||||
|
logo: assets/images/projects/tensorflow.png
|
||||||
|
role: Developer
|
||||||
|
timeline: "Jun 2018 - Present"
|
||||||
|
repo: https://github.com/tensorflow/tensorflow
|
||||||
|
#url: ""
|
||||||
|
summary: An Open Source Machine Learning Framework for Everyone.
|
||||||
|
tags: ["professional", "machine-learning","academic"]
|
||||||
|
|
||||||
|
- name: A sample academic paper
|
||||||
|
role: Team Lead
|
||||||
|
timeline: "Jan 2017 - Nov 2017"
|
||||||
|
url: "https://www.example.com"
|
||||||
|
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente eius reprehenderit animi suscipit autem eligendi esse amet aliquid error eum. Accusantium distinctio soluta aliquid quas placeat modi suscipit eligendi nisi.
|
||||||
|
tags: ["academic","iot"]
|
||||||
|
|
||||||
|
- name: Nocode
|
||||||
|
logo: assets/images/projects/no-code.png
|
||||||
|
role: Nothing
|
||||||
|
timeline: "Oct 2019 - Dec 2019"
|
||||||
|
repo: https://github.com/kelseyhightower/nocode
|
||||||
|
#url: ""
|
||||||
|
summary: The best way to write secure and reliable applications. Write nothing; deploy nowhere.
|
||||||
|
tags: ["hobby", "fun"]
|
||||||
|
|
||||||
|
- name: Toha
|
||||||
|
logo: assets/images/logo.png
|
||||||
|
role: Owner
|
||||||
|
timeline: "Jun 2019 - Present"
|
||||||
|
repo: https://github.com/hossainemruz/toha
|
||||||
|
summary: A Hugo theme for personal portfolio.
|
||||||
|
tags: ["hobby","hugo","theme","professional"]
|
40
exampleSite/data/site.yaml
Normal file
40
exampleSite/data/site.yaml
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
# background image of the landing page
|
||||||
|
background: "assets/images/default-background.jpg"
|
||||||
|
|
||||||
|
# some information about you
|
||||||
|
author:
|
||||||
|
name: "Jane Doe"
|
||||||
|
image: "assets/images/default-avatar.png"
|
||||||
|
# give your some contact information. they will be used in the footer
|
||||||
|
contactInfo:
|
||||||
|
email: "janedoe@example.com"
|
||||||
|
phone: "+0123456789"
|
||||||
|
# a summary of what you do
|
||||||
|
summary:
|
||||||
|
- I am a Developer
|
||||||
|
- I work with Go
|
||||||
|
- I love to work with some fun projects
|
||||||
|
|
||||||
|
# Menus of the home page
|
||||||
|
menus:
|
||||||
|
- name: Home
|
||||||
|
url: "#home"
|
||||||
|
weight: 1
|
||||||
|
- name: About
|
||||||
|
url: "#about"
|
||||||
|
weight: 2
|
||||||
|
- name: Skills
|
||||||
|
url: "#skills"
|
||||||
|
weight: 3
|
||||||
|
- name: Experiences
|
||||||
|
url: "#experiences"
|
||||||
|
weight: 4
|
||||||
|
- name: Projects
|
||||||
|
url: "#projects"
|
||||||
|
weight: 5
|
||||||
|
- name: Recent Posts
|
||||||
|
url: "#recent-posts"
|
||||||
|
weight: 6
|
||||||
|
- name: Achievements
|
||||||
|
url: "#achievements"
|
||||||
|
weight: 7
|
42
exampleSite/data/skills.yaml
Normal file
42
exampleSite/data/skills.yaml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# Your Skills.
|
||||||
|
# Give a summary of you each skill in summary section.
|
||||||
|
skills:
|
||||||
|
- name: Kubernetes
|
||||||
|
icon: "assets/images/skills/kubernetes.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: Go Development
|
||||||
|
icon: "assets/images/skills/go.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: Cloud Computing
|
||||||
|
icon: "assets/images/skills/cloud.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: Docker
|
||||||
|
icon: "assets/images/skills/docker.svg"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: Linux
|
||||||
|
icon: "assets/images/skills/linux.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: Prometheus
|
||||||
|
icon: "assets/images/skills/prometheus.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: Git
|
||||||
|
icon: "assets/images/skills/git.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
||||||
|
|
||||||
|
- name: C++
|
||||||
|
icon: "assets/images/skills/c++.png"
|
||||||
|
summary: "Some quick example text to build on the card title and make up the bulk
|
||||||
|
of tlsdfjlsdjflsdfhe card's content."
|
Loading…
Add table
Add a link
Reference in a new issue