Changeset 11149

Show
Ignore:
Timestamp:
05/05/08 13:20:53 (5 years ago)
Author:
kunitada
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/GohanLog/trunk/app/views/gohans/index.thtml

    r10914 r11149  
    44Hatena.Star.EntryLoader.headerTagAndClassName = ['H1','entry-title']; 
    55</script> 
     6<style type="text/css"> 
     7<!-- 
     8#gohan{ 
     9border: 0px solid; 
     10width: 160px; 
     11height: 300px; 
     12margin-right: 30px; 
     13float: left; 
     14} 
     15--> 
     16</style> 
    617 
    718<?php 
     
    3950<?php 
    4051 
    41 print '<ul style="list-style:none">'; 
    4252        foreach($value as $key2 => $value2){ 
    43                 print "<li style='float:left'>"; 
     53                print '<div id="gohan">'; 
    4454                print "<a href='/gohan_data/img/".$value2['Gohan']['filename']."'><img alt='".$value2['Gohan']['date_time_original']."' src='/thumbs/index?src=gohan_data/img/".$value2['Gohan']['filename']."&w=180&h=120'></a><BR>"; 
    4555        foreach($value2['Gohan']['tags'] as $key3 => $value3){ 
    46             print $value2['Gohan']['tags'][$key3]['Tag']['name']."<BR>"; 
     56            print $value2['Gohan']['tags'][$key3]['Tag']['name']." | "; 
    4757        } 
    4858         
     
    5363        print $html->submit('タグ追加'); 
    5464        print "</form>"; 
    55                 print "</li> \n"; 
     65                print "</div> \n"; 
    5666        } 
    57 print '</ul>'; 
    5867print '<BR><BR>'; 
    5968 
    6069} 
    6170?> 
    62  
    63  
    64