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.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							605 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							24 lines
						
					
					
						
							605 B
						
					
					
				
								{{- /*
							 | 
						|
								Renders an article card with a circle image, title, and summary.
							 | 
						|
								@context {image} the image resource.
							 | 
						|
								@context {alt} alt text for the image.
							 | 
						|
								@context {title} the title of the card.
							 | 
						|
								@context {summary} the summary text.
							 | 
						|
								@context {url} the url of the article.
							 | 
						|
								*/}}
							 | 
						|
								{{- $image := .image }}
							 | 
						|
								{{- $alt := .alt }}
							 | 
						|
								{{- $title := .title }}
							 | 
						|
								{{- $summary := .summary }}
							 | 
						|
								{{- $url := .url }}
							 | 
						|
								<a href="{{ $url }}">
							 | 
						|
								<article class="alt float-on-hover shadow">
							 | 
						|
									<div>
							 | 
						|
									  <img src="{{ $image.RelPermalink }}" alt="{{ $alt }}" />
							 | 
						|
									</div>
							 | 
						|
									<div>
							 | 
						|
										<h2>{{ $title }}</h2>
							 | 
						|
										<p>{{ $summary }}</p>
							 | 
						|
									</div>
							 | 
						|
								</article>
							 | 
						|
								</a>
							 | 
						|
								
							 |