forked from watir/watir.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: default
title: Watir is...
---
<div class="intro">
<div class="background"></div>
<div class="grid">
<div class="unit half align-left">
<h1>{{ page.title }}</h1>
<p>An open source Ruby library for automating tests. Watir interacts with a
browser the same way people do: clicking links, filling out forms and validating
text.</p>
<ul>
<li>Read our <a href="http://www.rubydoc.info/gems/watir-webdriver">documentation</a> to get started</li>
<li>See what <a href="/users">companies are using Watir</a></li></ul>
</div>
<div class="unit half demo">
<pre>{% include demo.html %}</pre>
</div>
</div>
</div>
<div style="width: 70%; margin-top: 50px">
{% for post in site.posts %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% if year == "2016" %}
<li>
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
<p>
{% if post.author_url == null %}
Written by: {{ post.author }}
{% else %}
Written by: <a href="{{ post.author_url }}"> {{ post.author }}</a>
{% endif %}
on {{ post.date | date: "%B %e, %Y" }}</p>
{{ post.excerpt | strip_html }}
<br />
<a href="{{ post.url }}">Continue Reading...</a>
</li>
<hr />
<br />
{% endif %}
{% endfor %}
</div>