Skip to content

Refine UX for new and current users. #76

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Mar 17, 2016
Merged
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_site/
_site/
.jekyll-metadata
2 changes: 1 addition & 1 deletion _includes/guides.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<li><a href="/docs/01-Introduction">Introduction</a></li><li><a href="/docs/02-GettingStarted">Getting Started</a></li><li><a href="/docs/03-AcceptanceTests">Acceptance Tests</a></li><li><a href="/docs/04-FunctionalTests">Functional Tests</a></li><li><a href="/docs/05-UnitTests">Unit Tests</a></li><li><a href="/docs/06-ReusingTestCode">Reusing Test Code</a></li><li><a href="/docs/07-AdvancedUsage">Advanced Usage</a></li><li><a href="/docs/08-Customization">Customization</a></li><li><a href="/docs/09-Data">Data</a></li><li><a href="/docs/10-WebServices">Web Services</a></li><li><a href="/docs/11-Codecoverage">Codecoverage</a></li><li><a href="/docs/12-ParallelExecution">Parallel Execution</a></li>
<li><a href="/docs/01-Introduction">Introduction</a></li><li><a href="/docs/02-GettingStarted">Getting Started</a></li><li><a href="/docs/03-AcceptanceTests">Acceptance Tests</a></li><li><a href="/docs/04-FunctionalTests">Functional Tests</a></li><li><a href="/docs/05-UnitTests">Unit Tests</a></li><li><a href="/docs/06-ReusingTestCode">Reusing Test Code</a></li><li><a href="/docs/07-AdvancedUsage">Advanced Usage</a></li><li><a href="/docs/08-Customization">Customization</a></li><li><a href="/docs/09-Data">Data</a></li><li><a href="/docs/10-WebServices">Web Services</a></li><li><a href="/docs/11-Codecoverage">Codecoverage</a></li><li><a href="/docs/12-ParallelExecution">Parallel Execution</a></li><li><a href="/video">Nettuts+ Video Course</a></li>
2 changes: 1 addition & 1 deletion _includes/reference.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<li><a href="/docs/reference/Autoload">Autoload</a></li><li><a href="/docs/reference/Commands">Commands</a></li><li><a href="/docs/reference/Configuration">Configuration</a></li><li><a href="/docs/reference/Fixtures">Fixtures</a></li><li><a href="/docs/reference/Functions">Functions</a></li><li><a href="/docs/reference/JsonType">JsonType</a></li><li><a href="/docs/reference/Locator">Locator</a></li><li><a href="/docs/reference/Stub">Stub</a></li><li><a href="/docs/reference/XmlBuilder">XmlBuilder</a></li>
<li><a href="/install">Installation</a></li><li><a href="/changelog">Changelog</a></li><li role="separator" class="divider"></li><li><a href="/docs/reference/Autoload">Autoload</a></li><li><a href="/docs/reference/Commands">Commands</a></li><li><a href="/docs/reference/Configuration">Configuration</a></li><li><a href="/docs/reference/Fixtures">Fixtures</a></li><li><a href="/docs/reference/Functions">Functions</a></li><li><a href="/docs/reference/JsonType">JsonType</a></li><li><a href="/docs/reference/Locator">Locator</a></li><li><a href="/docs/reference/Stub">Stub</a></li><li><a href="/docs/reference/XmlBuilder">XmlBuilder</a></li>
274 changes: 130 additions & 144 deletions _layouts/bootstrap.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,128 +10,117 @@
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">

<!-- CSS -->
<link href='http://fonts.googleapis.com/css?family=Philosopher&amp;subset=latin' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">

<link rel="stylesheet" href="/css/codeception.css">
<link rel="stylesheet" href="/css/contributors.css">
<link rel="stylesheet" type="text/css" media="screen" href="/css/syntax.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js" type="text/javascript"></script>
<script src="/js/jquery.toc.min.js" type="text/javascript" charset="utf-8"></script>
<script src="/js/contributors.js" type="text/javascript" charset="utf-8"></script>

<!-- Other -->
<link title="Codeception Blog" type="application/rss+xml" rel="alternate" href="/rss.xml">
<link rel="shortcut icon" href="/images/favicon.png">
<link rel="author" href="https://plus.google.com/+Codeception">
</head>

<body>{% capture guides %}{% include guides.html %}{% endcapture %}
{% capture modules %}{% include modules.html %}{% endcapture %}
{% capture reference %}{% include reference.html %}{% endcapture %}
<nav class="navbar nav-custom navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand"><img src="/images/toplogo.png" alt="codeception"/></a>
</div>
<div class="navbar-inner">
<ul class="nav navbar-nav navbar-collapse collapse menu">
<li>
<a href="/quickstart">Quickstart</a>
</li>
<li>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> Guides
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
{{ guides }}
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> Modules
<b class="caret"></b>
</a>
<ul class="dropdown-menu dropdown-modules">
{{ modules }}
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> Reference
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
{{ reference }}
{% capture modules %}{% include modules.html %}{% endcapture %}
{% capture reference %}{% include reference.html %}{% endcapture %}
<nav class="navbar nav-custom navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand"><img src="/images/toplogo.png" alt="codeception"/></a>
</div>
<div class="collapse navbar-collapse menu ">
<ul class="nav navbar-nav navbar-left">
<li><a href="/quickstart">Quick Start</a></li>
</ul>
</li>
<li>
<a href="/video">Video</a>
</li>
<li>
<a href="/blog">Blog</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="http://phptest.club/category/codeception">
Community
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="http://phptest.club/category/codeception">Community Forum</a></li>
<li><a href="http://automated-testing.info/category/codeception">Russian Community</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/codeception">StackOverflow</a></li>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> Guides
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
{{ guides }}
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> Modules
<b class="caret"></b>
</a>
<ul class="dropdown-menu dropdown-modules">
{{ modules }}
</ul>
</li>
<li>
<a href="/addons">Extensions</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"> Reference
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
{{ reference }}
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="http://phptest.club/category/codeception">
Community
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="/blog">Blog</a> </li>
<li><a href="http://phptest.club/category/codeception">Community Forum</a></li>
<li><a href="http://automated-testing.info/category/codeception">Russian Community</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/codeception">StackOverflow</a></li>
<li><a href="/video">Nettuts+ Video Course</a></li>
</ul>
</li>
</ul>
</li>
<li>
<a href="/credits">Credits</a>
</li>
<li>
<a href="/install">Install</a>
</li>
<li>
<a href="/addons">Addons</a>
</li>
<li>
<a href="/changelog">Changelog</a>
</li>
</ul>
</div>
</div> <!-- /.container -->
</nav>
<div class="container">
{{ content }}
</div>
<div id="footer">
</div>
</div> <!-- /.container -->
</nav>

<!-- CONTENT -->
<div class="container">
<div class="row">
<div class="col-sm-4 col-lg-4">
<h3>Credits</h3>
{{ content }}
</div>

<div id="footer">
<div class="container">
<div class="row">
<div class="col-sm-4 col-lg-4">
<h3>Credits</h3>

<p>
Codeception is a BDD-styled PHP testing framework, brought to you by <a href="http://codeception.com/credits">Codeception Team</a>.
Logo by <a
<p>
Codeception is a BDD-styled PHP testing framework, brought to you by <a href="http://codeception.com/credits">Codeception Team</a>.
Logo by <a
href="https://twitter.com/adnanblog">Mr. Adnan</a>. OpenSource <strong>MIT Licensed</strong>.
</p>
</p>

<div>
<div>
<a href="https://github.com/codeception/codeception" class="pull-left">
<img src="/images/github.png">
</a>

<a href="https://github.com/codeception/codeception" class="pull-left">
<img src="/images/github.png">
</a>
<a href="https://twitter.com/codeception" class="pull-left">
<img src="/images/twitter.png">
</a>

<a href="https://twitter.com/codeception" class="pull-left">
<img src="/images/twitter.png">
</a>

<a href="http://www.facebook.com/pages/Codeception/288959711204412" class="pull-left">
<img src="/images/facebook.png">
</a>
<a href="http://www.facebook.com/pages/Codeception/288959711204412" class="pull-left">
<img src="/images/facebook.png">
</a>

<a href="https://plus.google.com/b/108429499160233541695/108429499160233541695/posts"
class="pull-left">
<a href="https://plus.google.com/b/108429499160233541695/108429499160233541695/posts"
class="pull-left">
<img src="/images/gplus.png">
</a>

Expand All @@ -141,21 +130,19 @@ <h3>Credits</h3>
<h4>Sponsored by</h4>
<a href="https://www.rebilly.com/">
<img src="/images/Rebilly.png" style="width:300px;" alt="Your Partner
In Subscription Billing
Uncover your revenue potential with
our recurring billing software." title="Your Partner
In Subscription Billing">
</a>


<!-- <a href="http://2amigos.us/">
<img src="/images/2amigos.png" style="opacity: 0.7"
alt="Sponsored by 2AmigOS web development and consultancy in Miami"
title="Sponsored by 2AmigOS web development and consultancy in Miami">
In Subscription Billing
Uncover your revenue potential with
our recurring billing software." title="Your Partner
In Subscription Billing">
</a>
--> </div>


<!--
<a href="http://2amigos.us/">
<img src="/images/2amigos.png" style="opacity: 0.7"
alt="Sponsored by 2AmigOS web development and consultancy in Miami"
title="Sponsored by 2AmigOS web development and consultancy in Miami">
</a>
-->
</div>
</div>

<div class="col-sm-8 col-lg-8">
Expand All @@ -164,28 +151,30 @@ <h3>Thanks to all our contributors</h3>
<div id="contributors"></div>

<div>
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-501c6975683af72f"></script>

</div>

</div>
</div>
</div>
</div>
<div id="copyright">
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-501c6975683af72f"></script>

</div>
</div>
</div>
</div>
<div id="copyright">
© 2011&ndash;{{ site.time | date: '%Y' }}
</div>
</div>


<!-- SCRIPTS -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js" type="text/javascript"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
<script src="/js/jquery.toc.min.js" type="text/javascript" charset="utf-8"></script>
<script src="/js/contributors.js" type="text/javascript" charset="utf-8"></script>

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1899308-9']);
_gaq.push(['_trackPageview']);
Expand All @@ -198,7 +187,6 @@ <h3>Thanks to all our contributors</h3>
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();

</script>

<script>
Expand All @@ -212,14 +200,12 @@ <h3>Thanks to all our contributors</h3>

<div id="bugira_widget" style="position: fixed; right: 10px; bottom: 0px;"></div>
<script type="text/javascript">var __bugira_config = {"api_key": "dste248173q7"};
(function () {
var w = document.createElement('script');
w.type = 'text/javascript';
w.async = true;
w.src = 'http://bugiracdn.appspot.com/bugira-widget.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(w);
})();</script>


(function () {
var w = document.createElement('script');
w.type = 'text/javascript';
w.async = true;
w.src = 'http://bugiracdn.appspot.com/bugira-widget.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(w);
})();</script>
</body>
</html>
19 changes: 5 additions & 14 deletions _layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,19 @@

<!-- Adding the new Homepage here -->
<div id="home-hero">

<h1><img src="/images/logo.png" alt="Codeception Logo">Codeception</h1>
<p class="lead">Modern PHP testing for everyone.</p>

</div>

<div class="row home">
<div class="col-sm-12 col-lg-12">
<div class="row home-btns">
<div class="col-sm-12 col-md-4 col-md-offset-2">
<div class="well dark text-center">
<a class="btn btn-primary btn-lg btn-block" href="/install"><span class="btn-label">Install</span></a>
<p><br/>To install codeception you can download it or include it in your composer.json file.
</p>
</div>
</div>

<div class="col-sm-12 col-md-4">
<div class="col-sm-12 col-md-4 col-md-offset-4 ">
<div class="well dark text-center">
<a class="btn btn-lg btn-warning btn-block" href="/quickstart"><span class="btn-label">5min Quick Start</span></a>
<p><br/>Write and execute a test for an existing app<br>
<b>in less then 5 mins!</b>
<a class="btn btn-lg btn-warning btn-block" href="/quickstart"><span class="btn-label">Quick Start</span></a><br>
<p>
Write and execute a test for an existing app<br>
<strong>in less then 5 minutes!</strong>
</p>
</div>
</div>
Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy