https://github.com/hypersign-protocol/labs
https://github.com/hypersign-protocol/labs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hypersign-protocol/labs
- Owner: hypersign-protocol
- Created: 2022-01-05T04:21:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-29T03:41:38.000Z (almost 4 years ago)
- Last Synced: 2024-04-01T16:17:11.769Z (about 2 years ago)
- Language: HTML
- Homepage: https://labs.hypersign.id
- Size: 10.1 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hypersign Labs
[Hypersign Labs](https://labs.hypersign.id/) is part of [Hypermine organization](https://www.hypermine.in/) whose purpose is to bring researchers, students and techies who love deep diving into latest technologies and innovations, on one platform and hence building a community of like minded people. The idea (but not strict) is to read research papers and convert them into simple readable blogs so that people can understand easily and quickly. At present, our prime focus are in the field of cryptography, blockchain, PKI, security, SSI, DID etc.
## How can I contribute?
### Install hugo server
- [Install hugo](https://gohugo.io/getting-started/installing)
- Supported version (latest)
### Setup and run locally
**Clone repo**
```
git clone https://github.com/hypersign-protocol/labs.git
```
**Adding a new post**
```
hugo new posts//.md
# example: hugo new posts/blockchain/my-new-post.md
```
**Adding images in the post**
- Run `mkdir contents/images/` and add all image files into this folder.
- Once added you can refer them in your blog some thing like this ``
**Starting hugo server**
```
hugo server -D --verbose
```
## Raise the Pull request
```
git checkout -b ## make sure to create branch name with post name
git add --all
git commit -m
git push origin
```
Once pushed, head over to the repository and raise the pull request.
### Adding author
- Create a directory : `mkdir content/author/`
- If your name consist of two words, make folder name `word1-word2` format
- Create a file called `_index.md` inside that directory
- Modify the following template and paste into `_index.md` file.
- Also add your avatar in the same folder
- You can add `title`: `` and `AvatarUrl`: `/authors//.png"` fields.
```
---
title:
---
```
- Once added the Author, you can use the author in the `description` section of your post in this way:
```
---
..
...
authors:
- author1
- author2
...
..
---
```
### Adding tag and category
You can add `categories` and `tags` in your post for better visibility and access. You have to add the following in the description of your post.
```
---
..
...
categories: ["category1", "category2"]
tags: [tag1, tag2, tag3]
...
..
---
```