-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathListing_11.7.rhtml
More file actions
37 lines (33 loc) · 1013 Bytes
/
Listing_11.7.rhtml
File metadata and controls
37 lines (33 loc) · 1013 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Learn Enough Ruby Sample App</title>
<link rel="stylesheet" type="text/css" href="/stylesheets/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400"
rel="stylesheet">
</head>
<body>
<a href="/" class="header-logo">
<img src="/images/logo_b.png" alt="Learn Enough logo">
</a>
<div class="container">
<div class="content">
<h1>Sample Sinatra App</h1>
<p>
This is the sample Sinatra app for
<a href="https://www.learnenough.com/ruby-tutorial"><em>Learn Enough Ruby
to Be Dangerous</em></a>. Learn more on the <a href="/about">About</a> page.
</p>
<p>
Click the <a href="https://en.wikipedia.org/wiki/Sator_Square">Sator
Square</a> below to run the custom <a href="/palindrome">Palindrome
Detector</a>.
</p>
<a class="sator-square" href="/palindrome">
<img src="/images/sator_square.jpg" alt="Sator Square">
</a>
</div>
</div>
</body>
</html>