mirror of
				https://github.com/ZetaKebab/kesper.git
				synced 2025-11-04 08:09:49 +00:00 
			
		
		
		
	Fixed bottom margin on static page post-title h1
Static pages were previously missing a margin on the bottom of the post-title h1. By adding <header> with a post-header class around the h1, we gain the exact same bottom margin as seen on post (non-static) pages.
This commit is contained in:
		
							
								
								
									
										2
									
								
								page.hbs
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								page.hbs
									
									
									
									
									
								
							@@ -14,7 +14,9 @@
 | 
				
			|||||||
    {{! Everything inside the #post tags pulls data from the post }}
 | 
					    {{! Everything inside the #post tags pulls data from the post }}
 | 
				
			||||||
    {{#post}}
 | 
					    {{#post}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <header class="post-header">
 | 
				
			||||||
            <h1 class="post-title">{{title}}</h1>
 | 
					            <h1 class="post-title">{{title}}</h1>
 | 
				
			||||||
 | 
					        </header>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <section class="post-content">
 | 
					        <section class="post-content">
 | 
				
			||||||
            {{content}}
 | 
					            {{content}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user