cms-dita-jekyll-theme 0.1.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/dev-docs-banner.html +13 -0
- data/_includes/footer.html +14 -0
- data/_includes/header.html +198 -0
- data/_includes/help.html +41 -0
- data/_includes/old-docs-banner.html +12 -0
- data/_includes/search.html +25 -0
- data/_includes/toc.html +27 -0
- data/_layouts/base.html +77 -0
- data/_layouts/default.html +13 -0
- data/_layouts/javascript.js +3 -0
- data/_layouts/plugins.html +7 -0
- data/_layouts/post.html +9 -0
- data/_layouts/splash.html +38 -0
- data/_sass/_banner.scss +21 -0
- data/_sass/_bootstrap-custom.scss +44 -0
- data/_sass/_code.scss +86 -0
- data/_sass/_content.scss +17 -0
- data/_sass/_dita.scss +41 -0
- data/_sass/_footer.scss +13 -0
- data/_sass/_glossary.scss +27 -0
- data/_sass/_home.scss +28 -0
- data/_sass/_navbar.scss +28 -0
- data/_sass/_notes.scss +56 -0
- data/_sass/_search.scss +26 -0
- data/_sass/_tables.scss +26 -0
- data/_sass/_toc.scss +107 -0
- data/_sass/_ui-d.scss +8 -0
- data/_sass/_xml-d.scss +39 -0
- data/_sass/bootstrap/_alert.scss +51 -0
- data/_sass/bootstrap/_badge.scss +53 -0
- data/_sass/bootstrap/_breadcrumb.scss +41 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +140 -0
- data/_sass/bootstrap/_card.scss +310 -0
- data/_sass/bootstrap/_carousel.scss +198 -0
- data/_sass/bootstrap/_close.scss +44 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +507 -0
- data/_sass/bootstrap/_dropdown.scss +191 -0
- data/_sass/bootstrap/_forms.scss +334 -0
- data/_sass/bootstrap/_functions.scss +86 -0
- data/_sass/bootstrap/_grid.scss +52 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +193 -0
- data/_sass/bootstrap/_jumbotron.scss +16 -0
- data/_sass/bootstrap/_list-group.scss +121 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +41 -0
- data/_sass/bootstrap/_modal.scss +186 -0
- data/_sass/bootstrap/_nav.scss +120 -0
- data/_sass/bootstrap/_navbar.scss +299 -0
- data/_sass/bootstrap/_pagination.scss +78 -0
- data/_sass/bootstrap/_popover.scss +183 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +34 -0
- data/_sass/bootstrap/_reboot.scss +462 -0
- data/_sass/bootstrap/_root.scss +19 -0
- data/_sass/bootstrap/_spinners.scss +53 -0
- data/_sass/bootstrap/_tables.scss +187 -0
- data/_sass/bootstrap/_toasts.scss +43 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +22 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +16 -0
- data/_sass/bootstrap/_variables.scss +1091 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
- data/_sass/bootstrap/mixins/_badge.scss +11 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +111 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_float.scss +11 -0
- data/_sass/bootstrap/mixins/_forms.scss +198 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +66 -0
- data/_sass/bootstrap/mixins/_grid.scss +51 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
- data/_sass/bootstrap/mixins/_size.scss +6 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +16 -0
- data/_sass/bootstrap/mixins/_visibility.scss +7 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +63 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +38 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +9 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_text.scss +67 -0
- data/_sass/bootstrap/utilities/_visibility.scss +11 -0
- data/assets/css/bootstrap/bootstrap-grid.scss +29 -0
- data/assets/css/bootstrap/bootstrap-reboot.scss +12 -0
- data/assets/css/bootstrap/bootstrap.scss +44 -0
- data/assets/css/main.scss +67 -0
- data/assets/css/prism.css +139 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/lib/EditController.js +1 -0
- data/assets/js/main.css +2 -0
- data/assets/js/main.css.map +1 -0
- data/assets/js/main.js +77 -0
- data/assets/js/main.js.map +1 -0
- data/assets/js/plugins.js +80 -0
- data/assets/js/plugins.js.map +1 -0
- data/assets/js/version.js +1 -0
- metadata +218 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e325f05eef3ce88bef98cd07978e2fc288b14fde6f2321ce8a8a3e1df9d4b6fe
|
4
|
+
data.tar.gz: 7e43bc65d34237a46530087872b6e4e47b40a7d0864ff95b475ce47801e27c66
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8cefc4c82b414c3bdafc2bc8427cbf714fd426182198f16942e68d9ce57a3be823f418dda499625c49c5fd820d7c9f2c276580b8e1fa018821f5bfc5b6dae42e
|
7
|
+
data.tar.gz: cafd24ddb19f0bd89c8ede3ec584e45c4cc2f97f60131fe4277d03930128d4042c03bcf1aeffd8c10ddf4dd21a35c339d936a3989d09205d716d816114b8b884
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# cms-dita-jekyll-theme
|
2
|
+
|
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
|
+
|
5
|
+
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
6
|
+
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
8
|
+
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this line to your Jekyll site's `Gemfile`:
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
gem "cms-dita-jekyll-theme"
|
16
|
+
```
|
17
|
+
|
18
|
+
And add this line to your Jekyll site's `_config.yml`:
|
19
|
+
|
20
|
+
```yaml
|
21
|
+
theme: cms-dita-jekyll-theme
|
22
|
+
```
|
23
|
+
|
24
|
+
And then execute:
|
25
|
+
|
26
|
+
$ bundle
|
27
|
+
|
28
|
+
Or install it yourself as:
|
29
|
+
|
30
|
+
$ gem install cms-dita-jekyll-theme
|
31
|
+
|
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
|
+
## Development
|
41
|
+
|
42
|
+
To set up your environment to develop this theme, run `bundle install`.
|
43
|
+
|
44
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
45
|
+
|
46
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
47
|
+
To add a custom directory to your theme-gem, please edit the regexp in `cms-dita-jekyll-theme.gemspec` accordingly.
|
48
|
+
|
49
|
+
## License
|
50
|
+
|
51
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
52
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<div class="alert alert-warning alert-dismissible fade show" role="alert">
|
2
|
+
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
3
|
+
<span aria-hidden="true">×</span>
|
4
|
+
</button>
|
5
|
+
<p class="dev-docs-banner">
|
6
|
+
{% octicon beaker class:"mt-n1" %}
|
7
|
+
<span class="note__title notetitle"> Development docs</span> may describe unreleased features ·
|
8
|
+
<a href="{{ site.baseurl }}/{{ site.release }}" class="alert-link"
|
9
|
+
>Go to {{ site.release }} docs</a
|
10
|
+
>
|
11
|
+
· For shortcuts, type <kbd>?</kbd>
|
12
|
+
</p>
|
13
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<footer>
|
2
|
+
<div class="container text-muted">
|
3
|
+
{% if page.generated %}
|
4
|
+
Page content generated from plug-in source.
|
5
|
+
{% elsif page.commit %}
|
6
|
+
Page content generated from DITA source · Last changed in
|
7
|
+
<a href="https://github.com/dita-ot/docs/commit/{{ page.commit }}" target="_blank" title="Show the most recent change to the source file on GitHub.">
|
8
|
+
dita-ot/docs@{{ page.commit | truncate: 7, '' }}</a>
|
9
|
+
{% else %}
|
10
|
+
DITA Open Toolkit is released under the
|
11
|
+
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.
|
12
|
+
{% endif %}
|
13
|
+
</div>
|
14
|
+
</footer>
|
@@ -0,0 +1,198 @@
|
|
1
|
+
<header>
|
2
|
+
<nav class="navbar navbar-expand-md navbar-dark bg-primary">
|
3
|
+
<div class="container">
|
4
|
+
<a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a>
|
5
|
+
<button
|
6
|
+
class="navbar-toggler my-2"
|
7
|
+
type="button"
|
8
|
+
data-toggle="collapse"
|
9
|
+
data-target="#navbarToggle"
|
10
|
+
aria-controls="navbarToggle"
|
11
|
+
aria-expanded="false"
|
12
|
+
aria-label="Toggle navigation"
|
13
|
+
>
|
14
|
+
<span class="navbar-toggler-icon"></span>
|
15
|
+
</button>
|
16
|
+
|
17
|
+
<div class="collapse navbar-collapse" id="navbarToggle">
|
18
|
+
<ul class="navbar-nav mr-auto">
|
19
|
+
<li class="nav-item d-none d-lg-block">
|
20
|
+
<a class="nav-link" href="{{ site.baseurl }}/download">Download</a>
|
21
|
+
</li>
|
22
|
+
<li class="nav-item d-none d-lg-block">
|
23
|
+
<a class="nav-link" href="{{ site.baseurl }}/plugins">Plugins</a>
|
24
|
+
</li>
|
25
|
+
<li class="nav-item dropdown">
|
26
|
+
<a
|
27
|
+
class="nav-link dropdown-toggle"
|
28
|
+
data-toggle="dropdown"
|
29
|
+
id="contributeDropdownMenuLink"
|
30
|
+
href="#"
|
31
|
+
role="button"
|
32
|
+
aria-expanded="false"
|
33
|
+
>Contribute <b class="caret"></b
|
34
|
+
></a>
|
35
|
+
<div class="dropdown-menu" aria-labelledby="contributeDropdownMenuLink">
|
36
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/contributing">How To Contribute</a>
|
37
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/management">Project Management</a>
|
38
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/who_we_are">Who We Are</a>
|
39
|
+
<a class="dropdown-item" href="http://slack.dita-ot.org">Join us on Slack</a>
|
40
|
+
<div class="dropdown-divider"></div>
|
41
|
+
<a class="dropdown-item" href="https://github.com/dita-ot/dita-ot"
|
42
|
+
>DITA-OT Source Code</a
|
43
|
+
>
|
44
|
+
<a class="dropdown-item" href="https://github.com/dita-ot/dita-ot/issues"
|
45
|
+
>DITA-OT Issue Tracker</a
|
46
|
+
>
|
47
|
+
<a class="dropdown-item" href="https://github.com/dita-ot/dita-ot/wiki"
|
48
|
+
>DITA-OT Project Wiki</a
|
49
|
+
>
|
50
|
+
<div class="dropdown-divider"></div>
|
51
|
+
<a class="dropdown-item" href="https://github.com/dita-ot/docs"
|
52
|
+
>Documentation Source</a
|
53
|
+
>
|
54
|
+
<a class="dropdown-item" href="https://github.com/dita-ot/docs/issues"
|
55
|
+
>Documentation Issues</a
|
56
|
+
>
|
57
|
+
<a class="dropdown-item" href="https://github.com/dita-ot/docs/wiki"
|
58
|
+
>Documentation Wiki</a
|
59
|
+
>
|
60
|
+
</div>
|
61
|
+
</li>
|
62
|
+
<li class="nav-item dropdown">
|
63
|
+
<a
|
64
|
+
class="nav-link dropdown-toggle"
|
65
|
+
data-toggle="dropdown"
|
66
|
+
href="#"
|
67
|
+
role="button"
|
68
|
+
aria-expanded="false"
|
69
|
+
id="supportDropdownMenuLink"
|
70
|
+
>Support <b class="caret"></b
|
71
|
+
></a>
|
72
|
+
<div class="dropdown-menu" aria-labelledby="supportDropdownMenuLink">
|
73
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/support">Support Forums</a>
|
74
|
+
<div class="dropdown-divider"></div>
|
75
|
+
<a class="dropdown-item" href="https://groups.yahoo.com/group/dita-users"
|
76
|
+
>Yahoo! dita-users group</a
|
77
|
+
>
|
78
|
+
<a class="dropdown-item" href="https://groups.google.com/d/forum/dita-ot-users"
|
79
|
+
>DITA-OT Users Google Group</a
|
80
|
+
>
|
81
|
+
<a class="dropdown-item" href="http://stackoverflow.com/questions/tagged/dita-ot"
|
82
|
+
>Stack Overflow Tag: DITA-OT</a
|
83
|
+
>
|
84
|
+
<a class="dropdown-item" href="https://www.oasis-open.org/committees/dita/"
|
85
|
+
>OASIS DITA Technical Committee
|
86
|
+
</a>
|
87
|
+
<div class="dropdown-divider"></div>
|
88
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/colophon">About This Website</a>
|
89
|
+
</div>
|
90
|
+
</li>
|
91
|
+
<li class="nav-item dropdown">
|
92
|
+
<a
|
93
|
+
class="nav-link dropdown-toggle"
|
94
|
+
data-toggle="dropdown"
|
95
|
+
href="#"
|
96
|
+
role="button"
|
97
|
+
aria-expanded="false"
|
98
|
+
id="docsDropdownMenuLink"
|
99
|
+
>Docs <b class="caret"></b
|
100
|
+
></a>
|
101
|
+
<div class="dropdown-menu" aria-labelledby="docsDropdownMenuLink">
|
102
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/dev/">Latest Development Docs</a>
|
103
|
+
<div class="dropdown-divider"></div>
|
104
|
+
<h6 class="dropdown-header">Current version</h6>
|
105
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/{{ site.release }}/"
|
106
|
+
>Release {{ site.release }}</a
|
107
|
+
>
|
108
|
+
<div class="dropdown-divider"></div>
|
109
|
+
<h6 class="dropdown-header">Previous versions</h6>
|
110
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/3.2/">3.2</a>
|
111
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/3.1/">3.1</a>
|
112
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/3.0/">3.0</a>
|
113
|
+
<div class="dropdown-divider"></div>
|
114
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/2.5/">2.5</a>
|
115
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/2.4/">2.4</a>
|
116
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/2.3/">2.3</a>
|
117
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/2.2/">2.2</a>
|
118
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/2.1/">2.1</a>
|
119
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/2.0/">2.0</a>
|
120
|
+
<div class="dropdown-divider"></div>
|
121
|
+
<h6 class="dropdown-header">Legacy versions (DITA ≤ 1.2)</h6>
|
122
|
+
<a class="dropdown-item" href="{{ site.baseurl }}/1.8/">1.8</a>
|
123
|
+
<a class="dropdown-item" href="http://dita-ot.sourceforge.net/1.7/">1.7</a>
|
124
|
+
<a class="dropdown-item" href="http://dita-ot.sourceforge.net/1.6/">1.6</a>
|
125
|
+
<a class="dropdown-item" href="http://dita-ot.sourceforge.net/1.5.4/">1.5</a>
|
126
|
+
</div>
|
127
|
+
</li>
|
128
|
+
<li class="nav-item dropdown">
|
129
|
+
<a
|
130
|
+
class="nav-link dropdown-toggle"
|
131
|
+
data-toggle="dropdown"
|
132
|
+
href="#"
|
133
|
+
role="button"
|
134
|
+
aria-expanded="false"
|
135
|
+
title="DITA-OT Day 2019"
|
136
|
+
id="eventsDropdownMenuLink"
|
137
|
+
>Events <b class="caret"></b
|
138
|
+
></a>
|
139
|
+
<div class="dropdown-menu" aria-labelledby="eventsDropdownMenuLink">
|
140
|
+
<h6 class="dropdown-header">Join us on November 9, 2019</h6>
|
141
|
+
<a
|
142
|
+
class="dropdown-item"
|
143
|
+
href="https://www.oxygenxml.com/events/2019/dita-ot_day.html"
|
144
|
+
target="_blank"
|
145
|
+
>DITA-OT Day — Brussels</a
|
146
|
+
>
|
147
|
+
<div class="dropdown-divider"></div>
|
148
|
+
<h6 class="dropdown-header">Previous events</h6>
|
149
|
+
<a
|
150
|
+
class="dropdown-item"
|
151
|
+
href="https://www.oxygenxml.com/events/2018/dita-ot_day.html"
|
152
|
+
target="_blank"
|
153
|
+
>2018 — Rotterdam</a
|
154
|
+
>
|
155
|
+
<a
|
156
|
+
class="dropdown-item"
|
157
|
+
href="https://www.oxygenxml.com/events/2017/dita-ot_day.html"
|
158
|
+
target="_blank"
|
159
|
+
>2017 — Berlin</a
|
160
|
+
>
|
161
|
+
<a
|
162
|
+
class="dropdown-item"
|
163
|
+
href="https://www.oxygenxml.com/events/2016/dita-ot_day.html"
|
164
|
+
target="_blank"
|
165
|
+
>2016 — Munich</a
|
166
|
+
>
|
167
|
+
<a
|
168
|
+
class="dropdown-item"
|
169
|
+
href="https://www.oxygenxml.com/events/2015/dita-ot_day.html"
|
170
|
+
target="_blank"
|
171
|
+
>2015 — Munich</a
|
172
|
+
>
|
173
|
+
<a
|
174
|
+
class="dropdown-item"
|
175
|
+
href="https://www.oxygenxml.com/events/2014/dita-ot_day.html"
|
176
|
+
target="_blank"
|
177
|
+
>2014 — Munich</a
|
178
|
+
>
|
179
|
+
</div>
|
180
|
+
</li>
|
181
|
+
</ul>
|
182
|
+
|
183
|
+
<form class="form-inline" id="search" role="search">
|
184
|
+
<div class="form-group">
|
185
|
+
<label for="q">{% octicon search class:"bg-gradient-light mr-2" %}</label>
|
186
|
+
<input
|
187
|
+
type="text"
|
188
|
+
name="q"
|
189
|
+
class="form-control"
|
190
|
+
maxlength="255"
|
191
|
+
placeholder="Search the latest docs…"
|
192
|
+
/>
|
193
|
+
</div>
|
194
|
+
</form>
|
195
|
+
</div>
|
196
|
+
</div>
|
197
|
+
</nav>
|
198
|
+
</header>
|
data/_includes/help.html
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
<div
|
2
|
+
class="modal fade"
|
3
|
+
id="keyboardHelp"
|
4
|
+
tabindex="-1"
|
5
|
+
role="dialog"
|
6
|
+
aria-labelledby="keyboardHelpLabel"
|
7
|
+
>
|
8
|
+
<div class="modal-dialog" role="document">
|
9
|
+
<div class="modal-content">
|
10
|
+
<div class="modal-header">
|
11
|
+
<h4 class="modal-title" id="keyboardHelpLabel">Keyboard shortcuts</h4>
|
12
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
13
|
+
<span aria-hidden="true">×</span>
|
14
|
+
</button>
|
15
|
+
</div>
|
16
|
+
<div class="modal-body">
|
17
|
+
<p class="small">
|
18
|
+
You’ve activated the <em>keyboard shortcuts</em> help by typing “<strong>?</strong>”.
|
19
|
+
</p>
|
20
|
+
<table class="small table">
|
21
|
+
<tr>
|
22
|
+
<td><kbd>t</kbd></td>
|
23
|
+
<td>Open the <em>topic finder</em> to filter the list of topic titles</td>
|
24
|
+
</tr>
|
25
|
+
<tr>
|
26
|
+
<td><kbd>s</kbd></td>
|
27
|
+
<td>Use the <em>search</em> field to find text in topic content</td>
|
28
|
+
</tr>
|
29
|
+
<tr>
|
30
|
+
<td><kbd>?</kbd></td>
|
31
|
+
<td>Show this list of keyboard shortcuts</td>
|
32
|
+
</tr>
|
33
|
+
<tr>
|
34
|
+
<td><kbd>ESC</kbd></td>
|
35
|
+
<td>Close this dialog</td>
|
36
|
+
</tr>
|
37
|
+
</table>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
</div>
|
41
|
+
</div>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<div class="alert alert-secondary alert-dismissible fade show" role="alert">
|
2
|
+
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
3
|
+
<span aria-hidden="true">×</span>
|
4
|
+
</button>
|
5
|
+
<div class="old-docs-banner">
|
6
|
+
{% octicon archive class:"mt-n1" %}
|
7
|
+
<span class="note__title notetitle mx-1">Old docs</span> This is an older version of the
|
8
|
+
documentation. Switch to the current release
|
9
|
+
<a href="{{ site.baseurl }}/{{ site.release }}" class="alert-link">{{ site.release }}</a> or the
|
10
|
+
latest <a href="{{ site.baseurl }}/dev" class="alert-link">development documentation</a>.
|
11
|
+
</div>
|
12
|
+
</div>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<div class="modal fade" id="tocSearch" tabindex="-1" role="dialog" aria-labelledby="tocSeachLabel">
|
2
|
+
<div class="modal-dialog" role="document">
|
3
|
+
<div class="modal-content">
|
4
|
+
<div class="modal-header">
|
5
|
+
<h4 class="modal-title" id="tocSeachLabel">Find topics by title</h4>
|
6
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
7
|
+
<span aria-hidden="true">×</span>
|
8
|
+
</button>
|
9
|
+
</div>
|
10
|
+
<div class="modal-body">
|
11
|
+
<input type="text" id="tocSearchInput" class="mb-3" style="width:100%" />
|
12
|
+
<p class="small">
|
13
|
+
<em>Topic finder</em> activated by typing “<strong>t</strong>”. Continue typing to filter
|
14
|
+
the list of topics.
|
15
|
+
</p>
|
16
|
+
<p class="small">
|
17
|
+
Use <kbd>↑</kbd> and <kbd>↓</kbd> to navigate the results; then press <kbd>ENTER</kbd> to
|
18
|
+
view a topic, or <kbd>ESC</kbd> to close this dialog.
|
19
|
+
</p>
|
20
|
+
</div>
|
21
|
+
<!-- (search results appear here) -->
|
22
|
+
<div class="modal-footer"></div>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>
|
data/_includes/toc.html
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
<nav class="well well-sm">
|
2
|
+
<ul class="nav bs-docs-sidenav">
|
3
|
+
<li class="nav-header">Contributing to the Project</li>
|
4
|
+
<li {% if page.url == "/contributing.html" %} class="active" {% endif %}>
|
5
|
+
<a href="{{ site.baseurl }}/contributing">How To Contribute</a></li>
|
6
|
+
<li {% if page.url == "/management.html" %} class="active" {% endif %}>
|
7
|
+
<a href="{{ site.baseurl }}/management">Project Management</a></li>
|
8
|
+
<li {% if page.url == "/who_we_are.html" %} class="active" {% endif %}>
|
9
|
+
<a href="{{ site.baseurl }}/who_we_are">Who We Are</a></li>
|
10
|
+
<li><a href="http://slack.dita-ot.org">Join us on Slack</a></li>
|
11
|
+
<li class="nav-header">Collaboration on GitHub</li>
|
12
|
+
<li><a href="https://github.com/dita-ot/dita-ot">DITA-OT Source Code</a></li>
|
13
|
+
<li><a href="https://github.com/dita-ot/dita-ot/issues">DITA-OT Issue Tracker</a></li>
|
14
|
+
<li><a href="https://github.com/dita-ot/dita-ot/wiki">DITA-OT Project Wiki</a></li>
|
15
|
+
<li><a href="https://github.com/dita-ot/docs">Documentation Source</a></li>
|
16
|
+
<li><a href="https://github.com/dita-ot/docs/issues">Documentation Issues</a></li>
|
17
|
+
<li><a href="https://github.com/dita-ot/docs/wiki">Documentation Wiki</a></li>
|
18
|
+
<li class="nav-header">DITA & DITA-OT Resources</li>
|
19
|
+
<li><a href="https://groups.yahoo.com/group/dita-users">Yahoo! dita-users group</a></li>
|
20
|
+
<li><a href="https://groups.google.com/d/forum/dita-ot-users">DITA-OT Users Group</a></li>
|
21
|
+
<li><a href="http://stackoverflow.com/questions/tagged/dita-ot">Stack Overflow: DITA-OT</a></li>
|
22
|
+
<li><a href="https://www.oasis-open.org/committees/dita/">OASIS DITA TC</a></li>
|
23
|
+
<li class="nav-header">About This Website</li>
|
24
|
+
<li {% if page.url == "/colophon.html" %} class="active" {% endif %}>
|
25
|
+
<a href="{{ site.baseurl }}/colophon">Colophon</a></li>
|
26
|
+
</ul>
|
27
|
+
</nav>
|
data/_layouts/base.html
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<title>{{ page.title }}</title>
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
7
|
+
{% if page.url contains '/dev/' %}
|
8
|
+
<meta name="docsearch:version" content="dev" />
|
9
|
+
{% elsif page.url contains '/3.2/' %}
|
10
|
+
<meta name="docsearch:version" content="3.2" />
|
11
|
+
{% elsif page.url contains '/3.1/' %}
|
12
|
+
<meta name="docsearch:version" content="3.1" />
|
13
|
+
{% elsif page.url contains '/3.0/' %}
|
14
|
+
<meta name="docsearch:version" content="3.0" />
|
15
|
+
{% elsif page.url contains '/2.5/' %}
|
16
|
+
<meta name="docsearch:version" content="2.5" />
|
17
|
+
{% elsif page.url contains '/2.4/' %}
|
18
|
+
<meta name="docsearch:version" content="2.4" />
|
19
|
+
{% elsif page.url contains '/2.3/' %}
|
20
|
+
<meta name="docsearch:version" content="2.3" />
|
21
|
+
{% elsif page.url contains '/2.2/' %}
|
22
|
+
<meta name="docsearch:version" content="2.2" />
|
23
|
+
{% elsif page.url contains '/2.1/' %}
|
24
|
+
<meta name="docsearch:version" content="2.1" />
|
25
|
+
{% elsif page.url contains '/2.0/' %}
|
26
|
+
<meta name="docsearch:version" content="2.0" />
|
27
|
+
{% elsif page.url contains '/1.8/' %}
|
28
|
+
<meta name="docsearch:version" content="1.8" />
|
29
|
+
{% endif %}
|
30
|
+
<link href="{{ site.baseurl }}/assets/css/main.css" rel="stylesheet">
|
31
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css">
|
32
|
+
{% if page.index %}
|
33
|
+
<link href="{{ page.index }}" rel="index">
|
34
|
+
{% endif %}
|
35
|
+
</head>
|
36
|
+
<body>
|
37
|
+
{% include header.html %}
|
38
|
+
<div id="content" class="container mt-4">
|
39
|
+
{% if page.url contains '/dev/' %}
|
40
|
+
{% include dev-docs-banner.html %}
|
41
|
+
{% elsif page.url contains '/3.2/'
|
42
|
+
or page.url contains '/3.1/'
|
43
|
+
or page.url contains '/3.0/'
|
44
|
+
or page.url contains '/2.5/'
|
45
|
+
or page.url contains '/2.4/'
|
46
|
+
or page.url contains '/2.3/'
|
47
|
+
or page.url contains '/2.2/'
|
48
|
+
or page.url contains '/2.1/'
|
49
|
+
or page.url contains '/2.0/'
|
50
|
+
or page.url contains '/1.8/' %}
|
51
|
+
{% include old-docs-banner.html %}
|
52
|
+
{% endif %}
|
53
|
+
<div class="row">
|
54
|
+
{{ content }}
|
55
|
+
</div>
|
56
|
+
</div>
|
57
|
+
{% include footer.html %}
|
58
|
+
{% include search.html %}
|
59
|
+
{% include help.html %}
|
60
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
61
|
+
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
62
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
|
63
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
|
64
|
+
<script src="{{ site.baseurl }}/assets/js/main.js" type="text/javascript" ></script>
|
65
|
+
<script type="text/javascript">
|
66
|
+
docsearch({
|
67
|
+
apiKey: 'fdd89b9b35b9bd347f34111dbc1c6219',
|
68
|
+
indexName: 'dita-ot',
|
69
|
+
inputSelector: '#search input[type=text]',
|
70
|
+
algoliaOptions: {
|
71
|
+
hitsPerPage: 10,
|
72
|
+
},
|
73
|
+
debug: false
|
74
|
+
});
|
75
|
+
</script>
|
76
|
+
</body>
|
77
|
+
</html>
|