Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Update html files to include links to new internal clojure page, and …
Browse files Browse the repository at this point in the history
…add target _blank to that internal URL instead
  • Loading branch information
semperos committed Mar 22, 2011
1 parent 69e7e3a commit 233c1ce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions resources/clojure.html
@@ -0,0 +1,10 @@
<h1>Clojure</h1>

To quote the official <a href="http://clojure.org">Clojure</a> website:

<blockquote>
Clojure is a dynamic programming language that targets the Java Virtual Machine (and the CLR). It is designed to be a general-purpose language, combining the approachability and interactive development of a scripting language with an efficient and robust infrastructure for multithreaded programming. Clojure is a compiled language - it compiles directly to JVM bytecode, yet remains completely dynamic. Every feature supported by Clojure is supported at runtime. Clojure provides easy access to the Java frameworks, with optional type hints and type inference, to ensure that calls to Java can avoid reflection.</blockquote>

<blockquote>
Clojure is a dialect of Lisp, and shares with Lisp the code-as-data philosophy and a powerful macro system. Clojure is predominantly a functional programming language, and features a rich set of immutable, persistent data structures. When mutable state is needed, Clojure offers a software transactional memory system and reactive Agent system that ensure clean, correct, multithreaded designs.
</blockquote>
1 change: 1 addition & 0 deletions resources/page.html
Expand Up @@ -55,6 +55,7 @@
</div>
<div id="footer">
<a class="menu-item" href="/">home</a> |
<a class="menu-item" href="/clojure">clojure</a> |
<a class="menu-item" href="/example-form">example form</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/welcome.html
@@ -1,6 +1,6 @@
<h1>Welcome to Ministache!</h1>
<p>This is an extremely mini <a class="external" href="https://github.com/cgrand/moustache">Moustache</a> application used to test my <a class="external" href="https://github.com/semperos/clj-webdriver">clj-webdriver</a> project. I've tried using other websites, but I'd rather not have an external dependency and no one site I've found sports all of the form elements needed for testing.</p>

<p>By the way, <a href="http://clojure.org" target="_blank">Clojure</a> is amazing!</p>
<p>By the way, Clojure <a href="http://localhost:8080/clojure" target="_blank">is amazing!</a></p>

<p>Enjoy! See the links below.</p>

0 comments on commit 233c1ce

Please sign in to comment.