Skip to content

Commit 6e94763

Browse files
author
Mike Fisher
committed
Add list of plugins and testimonials
1 parent 76e2134 commit 6e94763

File tree

6 files changed

+74
-225
lines changed

6 files changed

+74
-225
lines changed

_data/plugins.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
- name: task/archive
2+
repo: taskphp/archive
3+
description: Build tar and zip archives
4+
5+
- name: task/box
6+
repo: taskphp/box
7+
description: Run kherge/box commands
8+
9+
- name: task/console
10+
repo: taskphp/console
11+
description: symfony/console tools
12+
13+
- name: task/filesystem
14+
repo: taskphp/filesystem
15+
description: symfony/filesystem and more
16+
17+
- name: task/phpspec
18+
repo: taskphp/phpspec
19+
description: Run PhpSpec tests
20+
21+
- name: task/phpunit
22+
repo: taskphp/phpunit
23+
description: Run PHPUnit tests
24+
25+
- name: task/process
26+
repo: taskphp/process
27+
description: Subprocesses with symfony/process

_layouts/default.html

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,20 @@ <h2>Phing killing PHP task runner</h2>
4545

4646
<p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the Architect theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.</p>
4747

48-
<h2>Plugins</h2>
49-
<p>Console</p>
50-
<p>Process</p>
48+
<h1>Plugins</h1>
49+
{% for plugin in site.data.plugins %}
50+
<div class="plugin box">
51+
<h2><a href="https://github.com/{{ plugin.repo }}" target="_blank">{{ plugin.name }}</a></h2>
52+
<p>{{ plugin.description }}</p>
53+
</div>
54+
{% endfor %}
55+
56+
<h1>Testimonials</h1>
57+
<div class="testimonial box">
58+
<p class="quote">gaaah, just use bash!</p>
59+
<p class="reviewer"><a href="https://github.com/glenjamin" target="_blank">@glenathan</a></p>
60+
</div>
61+
5162
</aside>
5263
</div>
5364
</div>

css/main.css

Lines changed: 0 additions & 160 deletions
This file was deleted.

css/syntax.css

Lines changed: 0 additions & 60 deletions
This file was deleted.

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Add to your `composer.json`:
7575
...
7676
```
7777

78-
This will allow you to instantiate a `Task\Project`. To run tasks from the command line, install task/cli. You should probably do this now!
78+
This will allow you to instantiate a `Task\Project`. To run tasks from the command line, install [task/cli](https://github.com/taskphp/cli). You should probably do this now!
7979

8080
Usage
8181
=====
@@ -113,7 +113,7 @@ Available commands:
113113
shell
114114
```
115115

116-
If you've used Symfony's Console component before this will look familiar! Your `Task\Project` is a `Symfony\Component\Console\Application` and so you have a pretty CLI application out of the box.
116+
If you've used [Symfony's Console component](https://github.com/symfony/console) before this will look familiar! Your `Task\Project` is a `Symfony\Component\Console\Application` and so you have a pretty CLI application out of the box.
117117

118118
Add a task:
119119

stylesheets/stylesheet.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,37 @@ footer a:hover {
369369
* html .clearfix {height: 1%;}
370370
.clearfix {display: block;}
371371

372+
/* ASIDE */
373+
374+
aside h1 {
375+
font-size: 15px;
376+
font-weight: bold;
377+
color: #474747;
378+
margin-top: 20px;
379+
}
380+
381+
aside h2 {
382+
font-size: 12px;
383+
font-weight: bold;
384+
color: #474747;
385+
}
386+
387+
aside .box {
388+
border: 1px solid #d8d8d8;
389+
margin: 5px 0;
390+
padding: 5px;
391+
border-radius: 5px;
392+
}
393+
394+
aside .box p {
395+
margin-bottom: 3px;
396+
}
397+
398+
aside .testimonial .quote {
399+
font-style: italic;
400+
}
401+
402+
372403
/* #Media Queries
373404
================================================== */
374405

0 commit comments

Comments
 (0)