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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50d2b34586c1f705b41a425524d8bb336ec2d424fc80f290e9025392461daa3c
4
- data.tar.gz: 4284fd317549b4e56586f69c27bf1a2cad5fafa51e3efddb1cd62857a4f57045
3
+ metadata.gz: 2a050ebe28f7955a5f89039858cb6c5ddae74b69a75054a0c18c972cce59aa96
4
+ data.tar.gz: d7cd497848f24087b270c906230056ca644b334d2132df0edefd853ed9083af8
5
5
  SHA512:
6
- metadata.gz: 9074a1e88d244368bcdf19a58183ce60ecefae436642d555e35d43e49954da6c10a5fd2a46b0d1ed194335781627eae2e4ec93f750222c229007fccab2f50845
7
- data.tar.gz: 38d24dff52a7a2a71c184cf161f7d64922c388c80994e64b97716de6c1cd557679a81c19ffe2ac4609d43914db1ea51f0360d50fbad57bbebb7d2a45bab83aea
6
+ metadata.gz: b538c7b435e26f65cafcfe8fdb1c6c0f015075bf3e172a5d0c8bba848cb4bc3e74f2320d6ab5d994767ccfa654deab4a48d64d40d155a0d95d283eaa051368bd
7
+ data.tar.gz: 8ce793c2b974299c7bb37656f3afe45d078fc264be968e8750aa0cd5f7fdeeec1739e82c5e692b7a9c07d94d9c8331193f34224fa64f9906f633d7f275f1e3d4
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # uvdesk-docs
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,3 @@
1
+ <header>
2
+
3
+ </header>
@@ -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>
@@ -1 +1,20 @@
1
- {{ content }}
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,3 @@
1
+ @charset "utf-8";
2
+
3
+ @import "uvdesk-docs/theme";
@@ -0,0 +1,4 @@
1
+ body {
2
+ font-size: 14px;
3
+ line-height: 1.4em;
4
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "uvdesk-docs";
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.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-30 00:00:00.000000000 Z
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