Changeset 24685

Show
Ignore:
Timestamp:
11/23/08 14:27:31 (4 years ago)
Author:
hidek
Message:

add fancy index.html

Location:
lang/perl/Yacafi/trunk/example
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Yacafi/trunk/example/index.cgi

    r24575 r24685  
    55use Yacafi extends => { 
    66    template => { 
    7         params   => { 
    8             prefix   => 'tmpl/', 
    9             ext      => 'html', 
     7        params => { 
     8            prefix => 'tmpl/', 
     9            ext    => 'html', 
    1010        }, 
    1111        files => [qw/ index /], 
     
    1616 
    1717sub do_index { 
    18     view_template 'index', ( 
    19         id   => 'yappo', 
    20         name => 'osawa <at> tokyo', 
    21     ); 
     18    view_template 'index'; 
    2219} 
     20 
  • lang/perl/Yacafi/trunk/example/tmpl/index.html

    r24684 r24685  
    1010<link href="<%= uri_for('static/styles/fonts-min.css') %>" rel="stylesheet" type="text/css" media="all" /> 
    1111<link href="<%= uri_for('static/styles/base-min.css') %>" rel="stylesheet" type="text/css" media="all" /> 
     12<link href="<%= uri_for('static/styles/style.css') %>" rel="stylesheet" type="text/css" media="all" /> 
    1213<title>Yacafi (Yet another CGI application framework interface)</title> 
    1314</head> 
    1415<body> 
    15 <h1>Yacafi(Yet another CGI application framework interface)</h1> 
     16<div id="container"> 
     17<h1>Yacafi (Yet another CGI application framework interface)</h1> 
     18 
     19<div class="content"> 
     20<h2>What is Yacafi?:</h2> 
     21<p> 
     22Yacafiは気軽に使えるウェブアプリケーション実行環境です。 
     23</p> 
     24</div> 
     25 
     26<div class="content"> 
     27<h2>How to use:</h2> 
     28<ul> 
     29<li><a href="http://blog.yappo.jp/yappo/archives/000618.html">とりあえずここを参照</a></li> 
     30</ul> 
     31</div> 
     32 
     33<div class="content"> 
    1634<h2>Examples:</h2> 
    1735<ul> 
     
    1937<li><a href="yacafi-template.cgi">template</a></li> 
    2038</ul> 
     39</div> 
     40 
     41</div> 
    2142</body> 
    2243</html>