Skip to content

Commit f7d310b

Browse files
committed
Update site content
1 parent ebf9629 commit f7d310b

File tree

127 files changed

+2872
-947
lines changed

Some content is hidden

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

127 files changed

+2872
-947
lines changed

css/tabbed.css

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Copyright the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* See https://github.com/bmuschko/asciidoctorj-tabbed-code-extension/
19+
*/
20+
21+
.hidden {
22+
display: none;
23+
}
24+
25+
.switch {
26+
border-width: 1px 0 0 1px;
27+
border-style: solid;
28+
border-color: #3b73af;
29+
display: inline-block;
30+
}
31+
32+
.switch--item {
33+
padding: 10px;
34+
border-right: 1px solid;
35+
background-color: #ffffff;
36+
min-width: 5em;
37+
color: #3b73af;
38+
display: inline-block;
39+
cursor: pointer;
40+
text-align: left;
41+
}
42+
43+
.switch--item:hover {
44+
background-color: #efefef;
45+
}
46+
47+
.switch--item.selected {
48+
background-color: #3b73af;
49+
color: #ffffff;
50+
text-align: left;
51+
}
52+
53+
.listingblock {
54+
text-align: left;
55+
}
56+
57+
.listingblock>.title {
58+
color: #7a2518;
59+
font-style: italic;
60+
margin-bottom: 10px;
61+
}
62+
63+
.listingblock>.content {
64+
border-width: 1px 1px 1px 1px;
65+
border-style: solid;
66+
border-color: #3b73af;
67+
}

docs/conduct/index.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
<meta name="description" content="Citrus Framework Website"/>
99
<meta name="author" content="ConSol Software GmbH"/>
1010
<link type="application/atom+xml" rel="alternate" href="http://0.0.0.0:4000/feed.xml" title="Citrus Integration Tests" />
11-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus master branch" href="https://github.com/citrusframework/citrus/commits/master.atom">
11+
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus main branch" href="https://github.com/citrusframework/citrus/commits/main.atom">
1212
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
1313
<link rel="stylesheet" href="/css/screen.css">
14+
<link rel="stylesheet" href="/css/tabbed.css">
15+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.3/styles/atom-one-light.min.css">
1416
<link rel="icon" type="image/x-icon" href="/favicon.ico">
1517
<!--[if lt IE 9]>
1618
<script src="/js/html5shiv.min.js"></script>
1719
<script src="/js/respond.min.js"></script>
1820
<![endif]-->
21+
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
22+
<script src="/js/tabbed.js"></script>
1923
</head>
2024

2125

@@ -32,6 +36,9 @@
3236
<li class="">
3337
<a href="/projects/">Projects</a>
3438
</li>
39+
<li class="">
40+
<a href="/quickstart/">Quickstart</a>
41+
</li>
3542
<li class="">
3643
<a href="/endpoints/">Endpoints</a>
3744
</li>
@@ -47,12 +54,12 @@
4754
<li class="">
4855
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
4956
</li>
50-
<li class="">
51-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
52-
</li>
5357
<li class="hide-on-mobiles">
5458
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
5559
</li>
60+
<li class="">
61+
<a href="/help/"><i class="fa fa-help"></i></a>
62+
</li>
5663
</ul>
5764

5865
</nav>
@@ -68,6 +75,9 @@
6875
<li class="">
6976
<a href="/projects/">Projects</a>
7077
</li>
78+
<li class="">
79+
<a href="/quickstart/">Quickstart</a>
80+
</li>
7181
<li class="">
7282
<a href="/endpoints/">Endpoints</a>
7383
</li>
@@ -83,12 +93,12 @@
8393
<li class="">
8494
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
8595
</li>
86-
<li class="">
87-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
88-
</li>
8996
<li class="hide-on-mobiles">
9097
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
9198
</li>
99+
<li class="">
100+
<a href="/help/"><i class="fa fa-help"></i></a>
101+
</li>
92102
</ul>
93103

94104
</nav>

docs/consulting/index.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
<meta name="description" content="Citrus Framework Website"/>
99
<meta name="author" content="ConSol Software GmbH"/>
1010
<link type="application/atom+xml" rel="alternate" href="http://0.0.0.0:4000/feed.xml" title="Citrus Integration Tests" />
11-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus master branch" href="https://github.com/citrusframework/citrus/commits/master.atom">
11+
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus main branch" href="https://github.com/citrusframework/citrus/commits/main.atom">
1212
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
1313
<link rel="stylesheet" href="/css/screen.css">
14+
<link rel="stylesheet" href="/css/tabbed.css">
15+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.3/styles/atom-one-light.min.css">
1416
<link rel="icon" type="image/x-icon" href="/favicon.ico">
1517
<!--[if lt IE 9]>
1618
<script src="/js/html5shiv.min.js"></script>
1719
<script src="/js/respond.min.js"></script>
1820
<![endif]-->
21+
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
22+
<script src="/js/tabbed.js"></script>
1923
</head>
2024

2125

@@ -32,6 +36,9 @@
3236
<li class="">
3337
<a href="/projects/">Projects</a>
3438
</li>
39+
<li class="">
40+
<a href="/quickstart/">Quickstart</a>
41+
</li>
3542
<li class="">
3643
<a href="/endpoints/">Endpoints</a>
3744
</li>
@@ -47,12 +54,12 @@
4754
<li class="">
4855
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
4956
</li>
50-
<li class="">
51-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
52-
</li>
5357
<li class="hide-on-mobiles">
5458
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
5559
</li>
60+
<li class="">
61+
<a href="/help/"><i class="fa fa-help"></i></a>
62+
</li>
5663
</ul>
5764

5865
</nav>
@@ -68,6 +75,9 @@
6875
<li class="">
6976
<a href="/projects/">Projects</a>
7077
</li>
78+
<li class="">
79+
<a href="/quickstart/">Quickstart</a>
80+
</li>
7181
<li class="">
7282
<a href="/endpoints/">Endpoints</a>
7383
</li>
@@ -83,12 +93,12 @@
8393
<li class="">
8494
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
8595
</li>
86-
<li class="">
87-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
88-
</li>
8996
<li class="hide-on-mobiles">
9097
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
9198
</li>
99+
<li class="">
100+
<a href="/help/"><i class="fa fa-help"></i></a>
101+
</li>
92102
</ul>
93103

94104
</nav>

docs/continuous-build/index.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
<meta name="description" content="Citrus Framework Website"/>
99
<meta name="author" content="ConSol Software GmbH"/>
1010
<link type="application/atom+xml" rel="alternate" href="http://0.0.0.0:4000/feed.xml" title="Citrus Integration Tests" />
11-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus master branch" href="https://github.com/citrusframework/citrus/commits/master.atom">
11+
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus main branch" href="https://github.com/citrusframework/citrus/commits/main.atom">
1212
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
1313
<link rel="stylesheet" href="/css/screen.css">
14+
<link rel="stylesheet" href="/css/tabbed.css">
15+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.3/styles/atom-one-light.min.css">
1416
<link rel="icon" type="image/x-icon" href="/favicon.ico">
1517
<!--[if lt IE 9]>
1618
<script src="/js/html5shiv.min.js"></script>
1719
<script src="/js/respond.min.js"></script>
1820
<![endif]-->
21+
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
22+
<script src="/js/tabbed.js"></script>
1923
</head>
2024

2125

@@ -32,6 +36,9 @@
3236
<li class="">
3337
<a href="/projects/">Projects</a>
3438
</li>
39+
<li class="">
40+
<a href="/quickstart/">Quickstart</a>
41+
</li>
3542
<li class="">
3643
<a href="/endpoints/">Endpoints</a>
3744
</li>
@@ -47,12 +54,12 @@
4754
<li class="">
4855
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
4956
</li>
50-
<li class="">
51-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
52-
</li>
5357
<li class="hide-on-mobiles">
5458
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
5559
</li>
60+
<li class="">
61+
<a href="/help/"><i class="fa fa-help"></i></a>
62+
</li>
5663
</ul>
5764

5865
</nav>
@@ -68,6 +75,9 @@
6875
<li class="">
6976
<a href="/projects/">Projects</a>
7077
</li>
78+
<li class="">
79+
<a href="/quickstart/">Quickstart</a>
80+
</li>
7181
<li class="">
7282
<a href="/endpoints/">Endpoints</a>
7383
</li>
@@ -83,12 +93,12 @@
8393
<li class="">
8494
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
8595
</li>
86-
<li class="">
87-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
88-
</li>
8996
<li class="hide-on-mobiles">
9097
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
9198
</li>
99+
<li class="">
100+
<a href="/help/"><i class="fa fa-help"></i></a>
101+
</li>
92102
</ul>
93103

94104
</nav>

docs/conventions/index.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
<meta name="description" content="Citrus Framework Website"/>
99
<meta name="author" content="ConSol Software GmbH"/>
1010
<link type="application/atom+xml" rel="alternate" href="http://0.0.0.0:4000/feed.xml" title="Citrus Integration Tests" />
11-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus master branch" href="https://github.com/citrusframework/citrus/commits/master.atom">
11+
<link rel="alternate" type="application/atom+xml" title="Recent commits to Citrus main branch" href="https://github.com/citrusframework/citrus/commits/main.atom">
1212
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
1313
<link rel="stylesheet" href="/css/screen.css">
14+
<link rel="stylesheet" href="/css/tabbed.css">
15+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.3/styles/atom-one-light.min.css">
1416
<link rel="icon" type="image/x-icon" href="/favicon.ico">
1517
<!--[if lt IE 9]>
1618
<script src="/js/html5shiv.min.js"></script>
1719
<script src="/js/respond.min.js"></script>
1820
<![endif]-->
21+
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
22+
<script src="/js/tabbed.js"></script>
1923
</head>
2024

2125

@@ -32,6 +36,9 @@
3236
<li class="">
3337
<a href="/projects/">Projects</a>
3438
</li>
39+
<li class="">
40+
<a href="/quickstart/">Quickstart</a>
41+
</li>
3542
<li class="">
3643
<a href="/endpoints/">Endpoints</a>
3744
</li>
@@ -47,12 +54,12 @@
4754
<li class="">
4855
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
4956
</li>
50-
<li class="">
51-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
52-
</li>
5357
<li class="hide-on-mobiles">
5458
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
5559
</li>
60+
<li class="">
61+
<a href="/help/"><i class="fa fa-help"></i></a>
62+
</li>
5663
</ul>
5764

5865
</nav>
@@ -68,6 +75,9 @@
6875
<li class="">
6976
<a href="/projects/">Projects</a>
7077
</li>
78+
<li class="">
79+
<a href="/quickstart/">Quickstart</a>
80+
</li>
7181
<li class="">
7282
<a href="/endpoints/">Endpoints</a>
7383
</li>
@@ -83,12 +93,12 @@
8393
<li class="">
8494
<a href="/news/">News<span class="hide-on-mobiles"> &amp; Blog</span></a>
8595
</li>
86-
<li class="">
87-
<a href="/help/"><span class="show-on-mobiles"><i class="fa fa-help"></i></span><span class="hide-on-mobiles">Help</span></a>
88-
</li>
8996
<li class="hide-on-mobiles">
9097
<a href="https://github.com/citrusframework/citrus" target="_blank"><i class="fa fa-github"></i>&nbsp;&nbsp;GitHub</a>
9198
</li>
99+
<li class="">
100+
<a href="/help/"><i class="fa fa-help"></i></a>
101+
</li>
92102
</ul>
93103

94104
</nav>

0 commit comments

Comments
 (0)