Initial commit
This commit is contained in:
		
							
								
								
									
										32
									
								
								templates/post.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								templates/post.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,32 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en">
 | 
			
		||||
    <head>
 | 
			
		||||
        <meta charset="utf-8">
 | 
			
		||||
        <title>Akshay Kolli</title>
 | 
			
		||||
        <link rel="icon" href="{{ url_for('static', filename='assets/favicon.ico') }}" type="image/x-icon" >
 | 
			
		||||
        <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css" >
 | 
			
		||||
 | 
			
		||||
    </head>
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
    <body>  
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        <header><a href="/posts">Posts</a>  <a href="/">Home</a></header>
 | 
			
		||||
        <div class="post">
 | 
			
		||||
 | 
			
		||||
            <div class="post_meta">
 | 
			
		||||
                <h1>{{ post.metadata.title }}</h1>
 | 
			
		||||
                <h3>{{ post.metadata.date }}</h3>
 | 
			
		||||
                <h3>{{ post.metadata.description }}</h3>     
 | 
			
		||||
            </div>
 | 
			
		||||
    
 | 
			
		||||
            <div class="post_body">
 | 
			
		||||
                {{ post.post_md| safe }}
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
        </div>
 | 
			
		||||
        
 | 
			
		||||
            
 | 
			
		||||
    </body>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user