-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
90 lines (76 loc) · 3.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
layout: none
title: "Prototype JavaScript Framework"
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Prototype JavaScript framework: a foundation for ambitious web applications</title>
<link href="/stylesheets/index.css" rel="stylesheet" type="text/css" />
</head>
{% assign latest_version = site.prototype.latest_stable_version %}
{% assign latest_stable_release_date = site.prototype.latest_stable_release_date %}
<body class="">
<div id="page">
<div id="links_wrapper">
<div id="links">
<ul id="internal_links">
<li class="selected"><a href="/">Home</a></li>
<li><a href="/learn">Documentation</a></li>
<li><a href="/blog">Weblog</a></li>
</ul>
</div> <!-- #links -->
</div> <!-- #links_wrapper -->
<div id="masthead">
<div id="masthead_content">
<h1 id="logo"><span>Prototype JavaScript framework</span></h1>
<div id="pitch">
<h2><span>Advanced JavaScript made simple.</span></h2>
<p>Prototype is an open-source JavaScript framework that smooths over the rough edges
of cross-browser development so you can focus on writing kick-ass web applications.</p>
</div>
</div> <!-- #masthead_content -->
</div> <!-- #masthead -->
<div id="buttons_wrapper"><div id="buttons">
<ul>
<li id="download_button"><a href="/download">
<span class="title">Download:</span>
<span class="description">
<b>{{ latest_version }}</b> ({{ latest_stable_release_date}}) & Git
</span>
</a></li>
<li id="learn_button"><a href="/learn">
<span class="title">Learn:</span>
<span class="description">Docs & tutorials</span>
</a></li>
<li id="discuss_button"><a href="/discuss">
<span class="title">Discuss:</span>
<span class="description">Mailing lists & IRC</span>
</a></li>
<li id="contribute_button"><a href="/contribute">
<span class="title">Contribute:</span>
<span class="description">Report bugs & patches</span>
</a></li>
</ul>
</div> <!-- #buttons --></div>
<div id="more">
<div class="column sidebar-column">
<h3><a href="/blog">Weblog</a></h3>
{% for post in site.posts limit:1 %}
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
{% if post.digest %}
<p>{{ post.digest | markdownify }}</p>
{% endif %}
{% endfor %}
</div> <!-- .column -->
<div class="column main-column">
<h3 class="tagline"><span>A foundation for ambitious web applications.</span></h3>
<p>Prototype takes the complexity out of client-side web programming. Built to solve real-world problems, it adds useful extensions to the browser scripting environment and provides elegant APIs around the clumsy interfaces of Ajax and the Document Object Model.</p>
<p>
Getting started: <a href="/learn/class-inheritance">Defining classes and inheritance</a> • <a href="/learn/extensions">How Prototype extends the DOM</a> • <a href="/learn/introduction-to-ajax">Introduction to Ajax</a> • <a href="/learn/json">Using JSON</a> • <a href="/learn/event-delegation">Event delegation</a> • <a href="/learn/element-layout">Using Element.Layout</a>
</p>
</div> <!-- .column -->
</div> <!-- #more -->
</div> <!-- #page -->
</body></html>