https://github.com/yourlabs/blog
MIRROR of the blog from yourlabs.io/oss/blog
https://github.com/yourlabs/blog
Last synced: 4 months ago
JSON representation
MIRROR of the blog from yourlabs.io/oss/blog
- Host: GitHub
- URL: https://github.com/yourlabs/blog
- Owner: yourlabs
- License: mit
- Created: 2020-02-09T11:28:50.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T23:40:51.000Z (over 2 years ago)
- Last Synced: 2025-09-06T00:41:06.299Z (4 months ago)
- Language: HTML
- Homepage: https://blog.yourlabs.org
- Size: 28.6 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Starting yourlabs site locally
```
git clone git@yourlabs.io:oss/blog
cd blog
hugo serve # start hugo server on localhost:1313
```
## Text content
Text content is in the content directory, other elements are in `layout/_index.(fr|en).html`
## CSS/JS code
Use the following for development:
npm run watch
Then, prior to commiting changes:
```
rm -rf static/main.*; git rm -rf static/main.* ; npm run build; git add -f static/main.* layouts/_default/baseof.html
```