mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 00:29:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			818 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			818 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react'
 | |
| import Helmet from 'react-helmet'
 | |
| import SitePost from '../components/SitePost'
 | |
| import SitePage from '../components/SitePage'
 | |
| import { config } from 'config'
 | |
| 
 | |
| class MarkdownWrapper extends React.Component {
 | |
|     render() {
 | |
|         const {route} = this.props
 | |
|         const post = route.page.data
 | |
|         let layout, template
 | |
| 
 | |
|         layout = post.layout
 | |
| 
 | |
|         if (layout != 'page') {
 | |
|             template = <SitePost {...this.props}/>
 | |
|         } else {
 | |
|             template = <SitePage {...this.props}/>
 | |
|         }
 | |
| 
 | |
|         return (
 | |
|             <div>
 | |
|               <Helmet title={ `${post.title} - ${config.siteTitle}` }/>
 | |
|               { template }
 | |
|             </div>
 | |
|             );
 | |
|     }
 | |
| }
 | |
| 
 | |
| MarkdownWrapper.propTypes = {
 | |
|     route: React.PropTypes.object,
 | |
| }
 | |
| 
 | |
| export default MarkdownWrapper
 |