Skip to content

Commit

Permalink
angle brackets -> square
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Phillips committed Nov 25, 2011
1 parent 3b9918e commit 2a5ea8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions config.yml
Expand Up @@ -13,6 +13,7 @@ layout: "main"
# all the magic of encoding and decoding. You should not care
# about unicode within your app when this setting is set (recommended).
charset: "UTF-8"
auto_page: 1

# template engine
# simple: default and very basic template engine
Expand Down
10 changes: 5 additions & 5 deletions views/layouts/main.tt
Expand Up @@ -2,21 +2,21 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=<% settings.charset %>" />
<meta http-equiv="Content-type" content="text/html; charset=[% settings.charset %]" />
<title>TorontoPerlMongers</title>
<link rel="stylesheet" href="<% request.uri_base %>/css/style.css" />
<link rel="stylesheet" href="[% request.uri_base %]/css/style.css" />

<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">/* <![CDATA[ */
!window.jQuery && document.write('<script type="text/javascript" src="<% request.uri_base %>/javascripts/jquery.js"><\/script>')
!window.jQuery && document.write('<script type="text/javascript" src="[% request.uri_base %]/javascripts/jquery.js"><\/script>')
/* ]]> */</script>

</head>
<body>
<% content %>
[% content %]
<div id="footer">
Powered by <a href="http://perldancer.org/">Dancer</a> <% dancer_version %>
Powered by <a href="http://perldancer.org/">Dancer</a> [% dancer_version %]
</div>
</body>
</html>

0 comments on commit 2a5ea8c

Please sign in to comment.