You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							771 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							771 B
						
					
					
				
								{{ define "main" }}
							 | 
						|
								    <section class="left-to-right">
							 | 
						|
								
							 | 
						|
								        {{ with .Resources.GetMatch "avatar" }}
							 | 
						|
								        <img class="shadow featured" src="{{ .RelPermalink }}" alt="{{ .Params.alt }}"/>
							 | 
						|
								        {{ end }}
							 | 
						|
								
							 | 
						|
								        <div>
							 | 
						|
								            <h1>{{ .Params.name }}</h1>
							 | 
						|
								            <p>{{ .Params.bio }}</p>
							 | 
						|
								
							 | 
						|
								            <a class="small-text" href={{ .Params.projects}}>Projects</a>
							 | 
						|
								            <span> | </span>
							 | 
						|
								            <a class="small-text" href="mailto:{{ .Params.email }}">{{ .Params.email}}</a>
							 | 
						|
								        </div>
							 | 
						|
								
							 | 
						|
								    </section>
							 | 
						|
								
							 | 
						|
								    <section>
							 | 
						|
								
							 | 
						|
								        {{ .Content }}
							 | 
						|
								
							 | 
						|
								        <h2>Posts:</h2>
							 | 
						|
								
							 | 
						|
								    </section>
							 | 
						|
								
							 | 
						|
								    <section class="article-list">
							 | 
						|
								        {{ range .Data.Pages }}
							 | 
						|
								            {{ partial "article-card.html" . }}
							 | 
						|
								        {{ end }}
							 | 
						|
								    </section>
							 | 
						|
								
							 | 
						|
								{{ end }}
							 | 
						|
								
							 | 
						|
								
							 |