Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LoongsonLab/loongsonlab.github.io
https://github.com/LoongsonLab/loongsonlab.github.io
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/LoongsonLab/loongsonlab.github.io
- Owner: LoongsonLab
- License: apache-2.0
- Created: 2023-06-28T06:14:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-14T10:06:00.000Z (6 months ago)
- Last Synced: 2024-08-02T01:27:14.119Z (6 months ago)
- Language: JavaScript
- Homepage: https://loongsonlab.github.io
- Size: 39.2 MB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: news/index.en.html
- License: LICENSE
Awesome Lists containing this project
README
# Website for the Loongson Lab
Deployed at https://loongsonlab.github.io/.
The setup is modified from https://cmudig.github.io. Thanks to `Data Interaction Group at CMU`.
## Run
Install Jekyll dependencies with `bundle`. To start this page, run `bundle exec jekyll serve --livereload`.
## Run with Docker
```
docker run \
--rm
--volume="$PWD:/srv/jekyll" \
-p 4000:4000 -p 35729:35729 \
-it jekyll/jekyll \
jekyll serve --livereload
```## Add Content
To add specific content, follow the README guides in the corresponding directories:
* [Add a person](_people)
* [Add a publication](_publications)
* [Add a post](_posts)
* [Add a course](_courses)
* [Add a research area](_research)> **Some hints.**
>
> Also, this is a multi-language website. So you will need to create Markdown files for each language.
> If you only have the energy to maintain one language, then please **DO NOT** create "another language" file.
> The site will redirect other languages pages to the maintained language pages automatically.## General Header
```md
layout: default (Please not modified)
permalink: /
lang: zh/en (Language)
construct: true (Page under construction, optional)
info: (Information bar, optional)
- ...
- ...
warning: (Warning bar, optional)
- ...
- ...
```