Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsyaasir/shariff.dev.old
Yasir's Playground
https://github.com/itsyaasir/shariff.dev.old
blog hugo hugo-the paper paper-theme papermod personal-website portfolio websaite
Last synced: 10 days ago
JSON representation
Yasir's Playground
- Host: GitHub
- URL: https://github.com/itsyaasir/shariff.dev.old
- Owner: itsyaasir
- Archived: true
- Created: 2023-08-04T05:54:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-30T18:18:11.000Z (4 months ago)
- Last Synced: 2024-12-19T07:16:03.790Z (10 days ago)
- Topics: blog, hugo, hugo-the, paper, paper-theme, papermod, personal-website, portfolio, websaite
- Language: HTML
- Homepage: https://shariff.dev
- Size: 2.71 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shariff.dev
Source code for my personal website.
# Run on local machine
## Install hugo
[https://gohugo.io/getting-started/installing/](https://gohugo.io/getting-started/installing/)
## Clone the repo
```sh
git clone https://github.com/itsyaasir/shariff.dev.git
``````sh
cd shariff.dev```
## Install theme (e.g. PaperMod)
```sh
git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod
git submodule add https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod
```## Run
```sh
hugo server -D
```Visit [localhost:1313](http://localhost:1313)
## To enable the comment
Open below file
```sh
vim themes/PaperMod/layouts/partials/comments.html
```Add below snippet
```html
```
## Add Cover page customization
Create below file
```sh
vim themes/PaperMod/assets/css/extended/tag_list_cover.css
```Add below CSS
```
.tag-entry .entry-cover {
display: flex;
}
```Re Generate the Site
```
hugo
```