[refactor][m]: rename extension from exampletheme to example as per new repository name.
[ckanext-datagovau.git] / ckanext / example / theme / templates / home / index.html
blob:a/ckanext/example/theme/templates/home/index.html -> blob:b/ckanext/example/theme/templates/home/index.html
  <html xmlns:py="http://genshi.edgewall.org/"
  xmlns:i18n="http://genshi.edgewall.org/i18n"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  py:strip="">
   
  <py:def function="page_title">Home</py:def>
   
  <py:def function="optional_head">
  <style type="text/css">
  #examplething {
  background-color: yellow;
  padding: 10px;
  }
  </style>
  </py:def>
   
  <div py:match="content">
  <h2>Welcome to Example Theme!</h2>
  <p>
  This page left intentionally ugly
  </p>
  <p id="examplething">
  Here is the frob
  </p>
  </div>
   
  <xi:include href="layout.html" />
  </html>