You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jo...@apache.org on 2014/03/17 21:04:02 UTC

svn commit: r1578540 - /thrift/cms-site/trunk/templates/default.html

Author: joes
Date: Mon Mar 17 20:04:02 2014
New Revision: 1578540

URL: http://svn.apache.org/r1578540
Log:
port default template

Modified:
    thrift/cms-site/trunk/templates/default.html

Modified: thrift/cms-site/trunk/templates/default.html
URL: http://svn.apache.org/viewvc/thrift/cms-site/trunk/templates/default.html?rev=1578540&r1=1578539&r2=1578540&view=diff
==============================================================================
--- thrift/cms-site/trunk/templates/default.html (original)
+++ thrift/cms-site/trunk/templates/default.html Mon Mar 17 20:04:02 2014
@@ -13,13 +13,13 @@
 	  <script src="/static/js/bootstrap-dropdown.js"></script>
     <script src="/static/js/bootstrap-tab.js"></script>
 	
-    <title><%= @site.config[:title] %></title>
+    <title>{{ headers.title }}</title>
   </head>
   <body>
-  	<%= render 'header' %>
+  	{% include 'header' %}
   	<div class="container">
-		<%= yield %>
+		{{ content|markdown }}
 	</div>
-	<%= render 'footer' %>
+	{% include 'footer' %}
   </body>
 </html>