Changeset 13463 for events

Show
Ignore:
Timestamp:
06/08/08 12:07:26 (5 years ago)
Author:
key
Message:

html templateの取り込み

Location:
events/phpframework/symfony_1_0/trunk
Files:
13 added
3 modified

Legend:

Unmodified
Added
Removed
  • events/phpframework/symfony_1_0/trunk/apps/frontend/config/view.yml

    r11430 r13463  
    1010    language:     ja 
    1111 
    12   stylesheets:    [main] 
     12  stylesheets:    [import] 
    1313 
    1414  javascripts:    [] 
  • events/phpframework/symfony_1_0/trunk/apps/frontend/modules/homepage/templates/indexSuccess.php

    r11430 r13463  
    44                      'url'=>'homepage/messages')) 
    55);?> 
    6 <h1>phwittr</h1> 
    7  
    8 <div id='main'> 
    9   <div id='form'> 
     6<div id="wrapper"> 
     7   
     8  <div id="main"> 
     9    <ul class="tabNav"> 
     10      <li><a href="#tab1">タブ1</a></li> 
     11      <li><a href="#tab2">タブ2</a></li> 
     12      <li><a href="#tab3">タブ3</a></li> 
     13    </ul> 
     14    <div id="tab1">1のタブ内容</div> 
     15    <div id="tab2">2のタブ内容</div> 
     16    <div id="tab3">3のタブ内容</div> 
     17     
    1018    <?=form_tag('homepage/post') ?> 
    1119    <?=textarea_tag('message'); ?><br /> 
    1220    <?=submit_tag('update', 'update'); ?> 
    1321    </form> 
     22 
     23    <p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p><p>メイン</p> 
     24    <!-- / #main --> 
    1425  </div> 
    1526 
    16   <div id='messages'> 
    17   </div> 
     27  <!-- / #wrapper --> 
    1828</div> 
    19 <div id='sidebar'> 
    20 <?php include_component('homepage', 'member') ?> 
     29 
     30<div id="sub"> 
     31  <ul> 
     32    <li>サブ</li> 
     33  </ul> 
     34  <?php include_component('homepage', 'member') ?> 
     35  <!-- / #sub --> 
    2136</div> 
     37 
  • events/phpframework/symfony_1_0/trunk/apps/frontend/templates/layout.php

    r11422 r13463  
    1111 
    1212</head> 
    13 <body> 
     13<body id="mitsukuni.org" class="indexBody"> 
    1414 
    15 <?php echo $sf_data->getRaw('sf_content') ?> 
     15<div id="page"> 
     16 
     17  <div id="header"> 
     18    <h1><?=image_tag('share/phwittr_logo.png')?></h1> 
     19    <ul id="guideNav"> 
     20      <li><a href="/">ホーム</a></li> 
     21      <li><a href="/">設定</a></li> 
     22      <li><a href="/">ログアウト</a></li> 
     23    </ul> 
     24    <!-- / #header --> 
     25  </div> 
     26 
     27  <div id="contents"> 
     28    <?php echo $sf_data->getRaw('sf_content') ?> 
     29    <!-- / #contents --> 
     30  </div> 
     31 
     32  <div id="footer"> 
     33    <p class="copy">&copy; Mitsukuni `key' SATO</p> 
     34    <!-- / #footer --> 
     35  </div> 
     36 
     37  <!-- / #page --> 
     38</div> 
     39 
     40</body> 
    1641 
    1742</body>