Tag-specific pages
This commit is contained in:
		
					parent
					
						
							
								dfbbf9888f
							
						
					
				
			
			
				commit
				
					
						de779761c6
					
				
			
		
					 2 changed files with 24 additions and 37 deletions
				
			
		|  | @ -1,33 +1,19 @@ | |||
| <!doctype html> | ||||
| <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | ||||
| <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> | ||||
| <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> | ||||
| <!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]--> | ||||
| <head> | ||||
| {% include head.html %} | ||||
| </head> | ||||
| 
 | ||||
| <body id="page"> | ||||
| 
 | ||||
| {% include browser-upgrade.html %} | ||||
| {% include navigation.html %} | ||||
| 
 | ||||
| <div id="main" role="main"> | ||||
|   <article class="hentry"> | ||||
|     <header class="header-title"> | ||||
|       <div class="header-title-wrap"> | ||||
|         <h1 class="entry-title">Posts tagged as '{{ page.tag }}'</h1> | ||||
|       </div><!-- /.header-title-wrap --> | ||||
|     </header> | ||||
|     <div class="entry-content"> | ||||
|       <ul> | ||||
|         {% for post in page.posts %} | ||||
|             <li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date_to_string }} | Tags: {{ post | tags }})</li> | ||||
|         {% endfor %} | ||||
|       </ul> | ||||
|     </div><!-- /.entry-content --> | ||||
|   </article> | ||||
| </div><!-- /#main --> | ||||
| 
 | ||||
| </body> | ||||
| </html> | ||||
| --- | ||||
| layout: page | ||||
| comments: false | ||||
| show_meta: false | ||||
| breadcrumb: true | ||||
| header: | ||||
|     image_fullwidth: "banner.jpg" | ||||
| sidebar: right | ||||
| --- | ||||
| <div id="blog-index" class="row"> | ||||
| <h2 class="entry-title">Posts tagged as '{{ page.title }}'</h2> | ||||
|     <div class="small-12 columns t30"> | ||||
|         <ul> | ||||
|             {% for post in page.posts %} | ||||
|                 <li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> ({{ post.date | date_to_string }})</li> | ||||
|             {% endfor %} | ||||
|         </ul> | ||||
|     </div><!-- small-12columns t30 --> | ||||
| </div><!-- blog-index  --> | ||||
|  |  | |||
		Reference in a new issue