Skip to content

Commit e76aefc

Browse files
committed
initial commit
1 parent d7c37c9 commit e76aefc

File tree

252 files changed

+10328
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+10328
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.idea/

archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

config.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
author = "Benehiko"
2+
baseURL = "https://reolink.oleaintueri.com/"
3+
languageCode = "en-us"
4+
title = "ReolinkApi Docs"
5+
description = "The Unofficial Reolink Api clients documentation for Python and Go."
6+
theme = "hugo-theme-learn"
7+
8+
[outputs]
9+
home = [ "HTML", "JSON" ]
10+
11+
# customise theme properties https://themes.gohugo.io//theme/hugo-theme-learn/en/basics/configuration/
12+
[params]
13+
disableLandingPageButton = false
14+
disableBreadcrumb = false
15+
disableNextPrev = true
16+
themeVariant = "blue"

config.toml~

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
author = "Benehiko"
2+
baseURL = "https://reolink.oleaintueri.com/"
3+
languageCode = "en-us"
4+
title = "ReolinkApi Docs"
5+
description = "The Unofficial Reolink Api clients documentation for Python and Go."
6+
theme = "hugo-theme-learn"
7+
8+
[outputs]
9+
home = [ "HTML", "JSON" ]
10+
11+
# customise theme properties https://themes.gohugo.io//theme/hugo-theme-learn/en/basics/configuration/
12+
disableLandingPageButton = false
13+
disableBreadcrumb = false
14+
disableNextPrev = true
15+
themeVariant = "blue"

content/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## The Unofficial Reolink Camera Api client documentation.
2+
3+
---
4+
5+
## Goal
6+
7+
8+
This websites' goal is to inform those wanting to implement and use the set of tools
9+
provided by the [ReolinkCameraApi](https://github.com/ReolinkCameraApi) organisation.
10+
11+
##

content/reolink-go/_index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
+++
2+
title = "Reolink Go"
3+
date = 2020-12-17T18:41:34+02:00
4+
weight = 2
5+
chapter = true
6+
pre = "<b></b>"
7+
+++
8+
9+
10+
## Go Api Client
11+
12+
Lorem Ipsum.

content/reolink-python/_index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
+++
2+
title = "Reolink Python"
3+
date = 2020-12-17T18:36:02+02:00
4+
weight = 1
5+
chapter = true
6+
pre = "<b></b>"
7+
+++
8+
9+
## Python Api Client
10+
11+
The Python client attempts to write a comprehensive Reolink Camera api client.
12+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "Getting Started"
3+
date: 2020-12-17T18:37:15+02:00
4+
draft: true
5+
---
6+
7+
### Getting Started

layouts/partials/favicon.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
2+
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
3+
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
4+
<link rel="manifest" href="/images/site.webmanifest">
5+
<link rel="mask-icon" href="/images/safari-pinned-tab.svg" color="#5bbad5">
6+
<link rel="shortcut icon" href="/images/favicon.ico">
7+
<meta name="msapplication-TileColor" content="#00aba9">
8+
<meta name="msapplication-config" content="/static/images/browserconfig.xml">
9+
<meta name="theme-color" content="#ffffff">
10+

layouts/partials/logo.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<img src="/images/logo.png" alt="reolinkapi logo"/>

0 commit comments

Comments
 (0)