Skip to content

Commit d6da6f5

Browse files
committed
updated
1 parent 1a927f8 commit d6da6f5

File tree

6 files changed

+51
-12
lines changed

6 files changed

+51
-12
lines changed

Diff for: _layouts/bootstrap.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h4>Modules</h4>
8080
<li><h4>Reference</h4></li>
8181
<li><a href="/install">Install</a></li>
8282
<li><a href="/docs/reference/Configuration">Configuration</a></li>
83-
<li><a href="/docs/reference/Extensions">Extensions</a></li>
83+
<li><a href="/extensions">Extensions</a></li>
8484
<li><a href="/docs/reference/Commands">Commands</a></li></a></li>
8585
<li role="separator" class="divider"></li>
8686
<li><h4>Util Classes</h4></li>

Diff for: _layouts/page.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
---
44
<div class="row">
55

6+
67

7-
8-
<div class="col-sm-8 col-lg-8">
8+
<div class="col-sm-12 col-lg-8">
99
<div class="content page" id="page">
1010

1111
<div>
@@ -14,7 +14,7 @@
1414
</div>
1515
</div>
1616

17-
<div class="col-sm-4 col-lg-4">
17+
<div class="col-sm-12 col-lg-4">
1818

1919
{% if page.sidebar %}
2020

Diff for: _layouts/post.html

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
---
2-
layout: page
2+
layout: bootstrap
33
---
4+
5+
<div class="fixed">
6+
7+
<div class="col-md-6" style="float: right; margin-top: 1em">
8+
<div class="well">
9+
<a class="btn btn-lg btn-warning btn-block" href="/quickstart">Quick Start →<br>with Codeception</a>
10+
<p><br/>Write and execute a test for an existing app
11+
<b>in less then a 5 mins!</b>&nbsp;No additional tools required.&nbsp;
12+
</p>
13+
</div>
14+
</div>
15+
16+
<div class="content page">
17+
418
<h1>{{ page.title }}</h1>
19+
520
<p class="lead">
621
Published on {{ page.date | date: "%B %d, %Y" }}
722
</p>
@@ -26,3 +41,10 @@ <h1>{{ page.title }}</h1>
2641
})();
2742
</script>
2843
{% include comment.html %}
44+
45+
</div>
46+
47+
48+
</div>
49+
50+
</div>

Diff for: addons.html

+10-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@
55

66

77

8-
98
<div class="container">
109

1110
<h1>Addons</h1>
1211

1312

13+
<p class="alert alert-info">See built-in <a href="/extensions">official extensions</a> of Codeception</p>
14+
1415
<div class="row">
1516

1617

18+
19+
1720
<div class="col-md-6">
1821
<div class="page">
1922

@@ -59,9 +62,10 @@ <h2><a href="https://github.com/jayhealey/Webception">WebCeption <small>Web Runn
5962
<div class="row">
6063
<h2 class="text-center">Community Modules</h2>
6164

65+
</div>
6266
<div class="alert alert-warning">To publish your own module <a href="https://github.com/Codeception/codeception.github.com/edit/master/_data/modules.yml">add it to the list</a> on GitHub and send a Pull Request.</div>
6367

64-
</div>
68+
<div class="row">
6569
<div class="grid" data-columns>
6670

6771

@@ -96,13 +100,15 @@ <h2 class="text-center">Community Modules</h2>
96100
</a>
97101
</div>
98102
{% endfor %}
103+
</div>
99104
</div>
100105

101106
<div class="row">
102107
<h2 class="text-center">Community Extensions</h2>
103-
108+
</div>
104109
<div class="alert alert-warning">To publish your own extension <a href="https://github.com/Codeception/codeception.github.com/edit/master/_data/extensions.yml">add it to the list</a> on GitHub and send a Pull Request.</div>
105110

111+
<div class="row">
106112
<div class="grid" data-columns>
107113

108114

@@ -136,9 +142,9 @@ <h2 class="text-center">Community Extensions</h2>
136142
</a></div>
137143
{% endfor %}
138144
</div>
145+
</div>
139146

140147

141-
</div>
142148
</div>
143149
<script src="https://cdn.jsdelivr.net/salvattore/1.0.9/salvattore.min.js"></script>
144150

Diff for: css/codeception.css

+8-3
Original file line numberDiff line numberDiff line change
@@ -139,17 +139,22 @@ body .page {
139139
border-radius: 5px;
140140
}
141141

142+
body .fixed {
143+
margin: auto;
144+
max-width: 800px;
145+
}
146+
142147
body .post {
143148
margin-top: 1.5em;
144149
margin-bottom: 1.5em;
145150
font-size: 1.3em;
146-
line-height: 1.6;
151+
line-height: 1.5;
147152
color: #444;
148153
}
149154

150155
body .page .post p {
151-
margin-top: 1.5em;
152-
margin-bottom: 1.5em;
156+
margin-top: 1.3em;
157+
margin-bottom: 1.3em;
153158
}
154159

155160

Diff for: extensions.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: doc
3+
title: Extensions
4+
---
5+
6+
{% include extensions.md %}

0 commit comments

Comments
 (0)