forked from eifion/asciicasts.com-translations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.html
executable file
·86 lines (79 loc) · 3.47 KB
/
template.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">
<head>
<title>ASCIIcasts</title>
<base href="http://asciicasts.com/">
<meta name="verify-v1" content="ZZD0NP9ixSbulmdPEtvZRRuYOdjt0M73O31vmYuQCSI=" />
<link rel="alternate" type="application/rss+xml" title="RSS2.0" href="/episodes.xml" />
<link href="stylesheets/asciicasts.css?1231701167" media="screen" rel="stylesheet" type="text/css" />
<!--[if lte IE 6]><link href="/stylesheets/asciicastsie6.css" media="screen" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
<link href="stylesheets/SyntaxHighlighter.css" media="screen" media="screen" rel="stylesheet" type="text/css" />
<script src="javascripts/jquery-1.3.1.min.js" type="text/javascript"></script>
<script src="javascripts/shCore.js" type="text/javascript"></script>
<script src="javascripts/syntaxHighlight.js" type="text/javascript"></script>
<script src="javascripts/application.js" type="text/javascript"></script>
<script src="javascripts/shBrushCss.js" type="text/javascript"></script>
<script src="javascripts/shBrushJScript.js" type="text/javascript"></script>
<script src="javascripts/shBrushRuby.js" type="text/javascript"></script>
<script src="javascripts/shBrushSql.js" type="text/javascript"></script>
<style type="text/css">
pre.cucumber_definition { background-color: #0A263F; color: #6C6; font-weight: normal; padding: 4px; font-size: 1em; }
pre.cucumber_definition span { color: #CC6600; }
pre.cucumber span.undefined { color: #FF0; }
pre.cucumber span.skipped { color: #0FF; }
pre.cucumber span.failed { color: #F00; }
pre.cucumber span.passed { color: #0F0; }
</style>
</head>
<body>
<h1><a href="/"><img alt="home" src="images/asciicasts.png" /></a><span>ASCIIcasts</span></h1>
<ul id="menu">
<li><a href="/">Início</a></li>
<li><a href="/episodes/latest">Episódios recentes</a></li>
<li><a href="/episodes/all">Todos os episódios</a> </li>
<li><a href="/about">Sobre o ASCIIcasts</a></li>
<li id="searchItem">
<form action="/search/index" class="searchForm" method="get">
<fieldset>
<label>Search: </label>
<input id="q" name="q" type="text" value="" />
<input name="commit" type="submit" value="search" />
</fieldset>
</form>
</li>
</ul>
<div class="sideBar">
<div class="tagPanel">
<h3 id="tagListHeader">Tags</h3>
<ul class="tagList">
<li><a href="/tags/active-record">active-record</a></li>
<li><a href="/tags/active-support">active-support</a></li>
<li><a href="/tags/caching">caching</a></li>
<li><a href="/tags/controllers">controllers</a></li>
<li><a href="/tags/forms">forms</a></li>
<li><a href="/tags/performance">performance</a></li>
<li><a href="/tags/refactoring">refactoring</a></li>
<li><a href="/tags/security">security</a></li>
<li><a href="/tags/testing">testing</a></li>
<li><a href="/tags/views">views</a></li>
</ul>
</div>
</div>
<div class="main">
<div class="wrapper ep1">
<h2>Título do Episódio</h2>
<!-- CONTENT GOES HERE -->
</div>
<div class="episodeLinks">
<a href="#">Episódio anterior</a>
<a href="#">Próximo episódio</a>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("code,pre").syntaxHighlight({showGutter: false, showControls: false, firstLine: 1});
});
</script>
</body>
</html>