uvdesk-docs 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -10
- data/_includes/footer.html +1 -0
- data/_includes/header.html +3 -0
- data/_layouts/documentation.html +20 -0
- data/_layouts/feature.html +20 -0
- data/_layouts/home.html +20 -1
- data/_sass/uvdesk-docs.scss +3 -0
- data/_sass/uvdesk-docs/_theme.scss +4 -0
- data/assets/css/main.scss +4 -0
- data/assets/favicon.ico +0 -0
- metadata +10 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a050ebe28f7955a5f89039858cb6c5ddae74b69a75054a0c18c972cce59aa96
|
|
4
|
+
data.tar.gz: d7cd497848f24087b270c906230056ca644b334d2132df0edefd853ed9083af8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b538c7b435e26f65cafcfe8fdb1c6c0f015075bf3e172a5d0c8bba848cb4bc3e74f2320d6ab5d994767ccfa654deab4a48d64d40d155a0d95d283eaa051368bd
|
|
7
|
+
data.tar.gz: 8ce793c2b974299c7bb37656f3afe45d078fc264be968e8750aa0cd5f7fdeeec1739e82c5e692b7a9c07d94d9c8331193f34224fa64f9906f633d7f275f1e3d4
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# UVDesk Developer Docs Theme
|
|
2
2
|
|
|
3
3
|
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
|
4
4
|
|
|
@@ -19,6 +19,9 @@ And add this line to your Jekyll site's `_config.yml`:
|
|
|
19
19
|
|
|
20
20
|
```yaml
|
|
21
21
|
theme: uvdesk-docs
|
|
22
|
+
|
|
23
|
+
# If you're using github pages, use this instead
|
|
24
|
+
remote_theme: uvdesk-docs
|
|
22
25
|
```
|
|
23
26
|
|
|
24
27
|
And then execute:
|
|
@@ -29,14 +32,6 @@ Or install it yourself as:
|
|
|
29
32
|
|
|
30
33
|
$ gem install uvdesk-docs
|
|
31
34
|
|
|
32
|
-
## Usage
|
|
33
|
-
|
|
34
|
-
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
|
35
|
-
|
|
36
|
-
## Contributing
|
|
37
|
-
|
|
38
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
39
|
-
|
|
40
35
|
## Development
|
|
41
36
|
|
|
42
37
|
To set up your environment to develop this theme, run `bundle install`.
|
|
@@ -49,4 +44,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `uvdesk-d
|
|
|
49
44
|
## License
|
|
50
45
|
|
|
51
46
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
52
|
-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<footer class="site-footer"></footer>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
|
|
8
|
+
<title>{{ page.title }}</title>
|
|
9
|
+
|
|
10
|
+
<link href="{{ "/assets/favicon.ico" | relative_url }}" type="image/x-icon" rel="icon" sizes="16x16 32x32 48x48" />
|
|
11
|
+
<link href="{{ "/assets/css/main.css" | relative_url }}" type="text/css" rel="stylesheet" media="all" />
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
{%- include header.html -%}
|
|
15
|
+
|
|
16
|
+
{{ content }}
|
|
17
|
+
|
|
18
|
+
{%- include footer.html -%}
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
|
|
8
|
+
<title>{{ page.title }}</title>
|
|
9
|
+
|
|
10
|
+
<link href="{{ "/assets/favicon.ico" | relative_url }}" type="image/x-icon" rel="icon" sizes="16x16 32x32 48x48" />
|
|
11
|
+
<link href="{{ "/assets/css/main.css" | relative_url }}" type="text/css" rel="stylesheet" media="all" />
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
{%- include header.html -%}
|
|
15
|
+
|
|
16
|
+
{{ content }}
|
|
17
|
+
|
|
18
|
+
{%- include footer.html -%}
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
data/_layouts/home.html
CHANGED
|
@@ -1 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
|
|
8
|
+
<title>{{ page.title }}</title>
|
|
9
|
+
|
|
10
|
+
<link href="{{ "/assets/favicon.ico" | relative_url }}" type="image/x-icon" rel="icon" sizes="16x16 32x32 48x48" />
|
|
11
|
+
<link href="{{ "/assets/css/main.css" | relative_url }}" type="text/css" rel="stylesheet" media="all" />
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
{%- include header.html -%}
|
|
15
|
+
|
|
16
|
+
{{ content }}
|
|
17
|
+
|
|
18
|
+
{%- include footer.html -%}
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
data/assets/favicon.ico
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uvdesk-docs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Akshay Kumar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01
|
|
11
|
+
date: 2019-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -61,7 +61,15 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- LICENSE
|
|
63
63
|
- README.md
|
|
64
|
+
- _includes/footer.html
|
|
65
|
+
- _includes/header.html
|
|
66
|
+
- _layouts/documentation.html
|
|
67
|
+
- _layouts/feature.html
|
|
64
68
|
- _layouts/home.html
|
|
69
|
+
- _sass/uvdesk-docs.scss
|
|
70
|
+
- _sass/uvdesk-docs/_theme.scss
|
|
71
|
+
- assets/css/main.scss
|
|
72
|
+
- assets/favicon.ico
|
|
65
73
|
homepage: https://wkrepo.webkul.com/symfony/uvdesk-community/jekyll-theme
|
|
66
74
|
licenses:
|
|
67
75
|
- MIT
|