You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+32-22
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
<!DOCTYPE HTML><htmldir="ltr" lang="en"><head><metacharset="utf-8" /><metacontent="width=device-width, initial-scale=1" name="viewport" /><title>Joy Framework</title><linkrel="stylesheet" href="css/atom-one-light.css" /><linkrel="stylesheet" href="css/tailwind.min.css" /><linkrel="stylesheet" href="css/app.css" /><linkrel="shortcut icon" href="favicon.ico" type="image/x-icon" /></head><body><divclass="lg:mt-10"><divclass="container p-4 mx-auto"><divclass="self-stretch flex-row lg:flex sm:block md:block lg:space-x-4"><divclass="flex-1"><divclass="flex flex-col self-stretch flex-auto space-y-2"><h1class="text-5xl text-gray-800">Joy</h1><h2class="text-3xl tracking-tight text-gray-800">A maximalist web framework for lisp aficionados</h2><h4class="text-l text-gray-800">Use the <ahref="https://janet-lang.org" class="text-indigo-500 underline">janet</a> programming language to build web apps faster with less code and very low memory usage.</h4><divclass="mt-4"><ahref="https://github.com/joy-framework/joy/blob/master/docs/introduction.md" class="inline-block my-6 px-5 py-3 rounded-lg bg-indigo-500 text-white shadow-lg hover:bg-indigo-700">Read the docs</a></div></div></div><divclass="flex-1"><pre><codeclass="rounded-lg p-6 clojure">(import joy :prefix "")
1
+
<!DOCTYPE HTML><htmldir="ltr" lang="en"><head><metacharset="utf-8" /><metacontent="width=device-width, initial-scale=1" name="viewport" /><metacontent="Joy Web Framework" name="title" /><metacontent="The full stack janet web framework" name="description" /><title>Joy Framework</title><linkrel="stylesheet" href="css/atom-one-light.css" /><linkrel="stylesheet" href="css/tailwind.min.css" /><linkrel="stylesheet" href="css/app.css" /><linkrel="shortcut icon" href="favicon.ico" type="image/x-icon" /></head><body><divclass="lg:mt-10"><divclass="container p-4 mx-auto"><divclass="self-stretch flex-row lg:flex sm:block md:block lg:space-x-4"><divclass="flex-1"><divclass="flex flex-col self-stretch flex-auto space-y-2"><h1class="text-5xl text-gray-800">Joy</h1><h2class="text-3xl tracking-tight text-gray-800">A maximalist web framework for lisp aficionados</h2><h4class="text-l text-gray-800">Use the <ahref="https://janet-lang.org" class="text-indigo-500 underline">janet</a> programming language to build web apps faster with less code and very low memory usage.</h4><divclass="mt-4"><ahref="https://github.com/joy-framework/joy/blob/master/docs/introduction.md" class="inline-block my-6 px-5 py-3 rounded-lg bg-indigo-500 text-white shadow-lg hover:bg-indigo-700">Read the docs</a></div></div></div><divclass="flex-1"><pre><codeclass="rounded-lg p-6 clojure">(import joy :prefix "")
2
2
3
3
(route :get "/" :home)
4
4
@@ -33,38 +33,48 @@
33
33
[h1 "You found joy!"]</code></pre><pre><codeclass="rounded-lg p-6 html"><h1 class="text-2xl text-gray-400">You found joy!</h1></code></pre></div></div></div></div></div><divclass="lg:mt-16"><divclass="container p-4 mx-auto"><divclass="flex flex-col self-stretch flex-auto space-y-16"><divclass="lg:grid lg:grid-flow-col lg:grid-cols-2 gap-10"><divclass="flex-1"><divclass="flex flex-col self-stretch flex-auto space-y-4"><h3class="text-2xl text-gray-800">Everything is a function</h3><divclass="text-gray-800">Joy doesn't uses objects or classes. Everything is a function that takes a request and outputs a response</div></div></div><divclass="flex-1"><divclass="flex flex-col self-stretch flex-auto space-y-4"><pre><codeclass="rounded-lg p-6 clojure">(use joy)
0 commit comments