summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2008-04-17 22:50:33 +0000
committerJonathan Pryor <jpryor@novell.com>2008-04-17 22:50:33 +0000
commit0990b576aafa5c5ab39f0e9bb62995801e93b30e (patch)
treea855a3f9eb91d6397a0b671ec456b735dcc0e661 /index.php
parentfbd85608312bac742a1b9f7734b2309ab57a8091 (diff)
Flesh out, adding some examples; move the Download link larger.
* index.php: Flesh out, adding some examples; move the Download link larger. * css/style.css: Add #download class. * discover/index.php: Add id attributes to permit linking from index.php. * index.html, discover/index.html: Flush.
Diffstat (limited to 'index.php')
-rw-r--r--index.php43
1 files changed, 32 insertions, 11 deletions
diff --git a/index.php b/index.php
index bc14919..ebc5d9a 100644
--- a/index.php
+++ b/index.php
@@ -2,30 +2,51 @@
require("template.php");
$content = <<<EOT
- <h3>Better</h3>
+ <p id="download">
+ <a href="/download/">Download OpenOffice.org</a>
+ </p>
+ <p>
+ With word processing, spreadsheets,
+ presentations, and everything else needed
+ for creating and editing documents,
+ OpenOffice.org has the tools it takes to
+ create, edit, and share work. It's open
+ source and cross-platform, so it's free
+ and works on your computer.
+ </p>
+ <h2>Better</h3>
<ul>
- <li>Better interoperability</li>
- <li>Better functionality</li>
+ <li>Better interoperability:
+ <a href="/discover/#ms-works-import">MS-Works Import</a>,
+ <a href="/discover/#vba-support">VBA support</a>,
+ <a href="http://noelpower.blogs.ie/2008/04/17/is-it-possible-to-support-vba-userforms/">VBA user forms</a>,
+ <a href="/discover/#wp-graphics-import">WordPerfect Graphics Import</a>
+ </li>
+ <li>Better functionality:
+ <a href="/discover/#calc-solver">Calc Solver</a>,
+ <a href="/discover/#chinese-rendering">Chinese Text Grid Rendering</a>,
+ <a href="/discover/#emf-rendering">EMF Rendering</a>,
+ <a href="/discover/#gstreamer">GStreamer integration</a>
+ </li>
</ul>
- <h3>Faster</h3>
+ <h2>Faster</h3>
<ul>
- <li>Faster startup</li>
+ <li>Faster startup:
+ <a href="/discover/#startup-performance">Startup Performance</a>
+ </li>
<li>Faster code integration</li>
</ul>
- <h3>Freer</h3>
+ <h2>Freer</h3>
<ul>
- <li>Freer licensing</li>
+ <li>Freer licensing: no requirement to sign the JCA or the SCA</li>
<li>Freer politics</li>
</ul>
- <div>
- <p><a href="/download/">Download OpenOffice.org</a></p>
- </div>
EOT;
print_page("Go-OO!", array("summary"),
- "Your OpenOffice.org",
+ "go-oo",
$content);
?>