You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
| {{ partial "header.html" . }}
 | |
| 
 | |
| {{ partial "navbar.html" . }}
 | |
| 
 | |
| <main id="main">
 | |
| 
 | |
| <section id="more-features" class="section-bg">
 | |
| 	<div class="container-fluid">
 | |
| 		<div class="section-header">
 | |
| 			<h3 class="section-title">{{ .Title }}</h3>
 | |
| 			<span class="section-divider"></span>
 | |
| 			<p class="section-description"></p>
 | |
| 		</div>
 | |
| 		{{ if .Content }}
 | |
| 		<div class="row">
 | |
| 			<div class="col-lg-2"> </div>
 | |
| 			<div class="col-lg-8 text-lg-center content wow fadeInBottom">
 | |
| 				{{ .Content }}
 | |
| 			</div>
 | |
| 			<div class="col-lg-2"> </div>
 | |
| 		</div>
 | |
| 		{{ end }}
 | |
| 		<div class="row">
 | |
| 			{{ range .Site.Menus.navbar  }}
 | |
| 				{{ if .HasChildren }}
 | |
| 					{{ range .Children }}
 | |
| 						{{ if eq .Parent "community" }}
 | |
| 							<div class="col-lg-4">
 | |
| 								<div class="box wow fadeInLeft">
 | |
| 									{{ if .Pre }}
 | |
| 										<div class="icon"><i class="{{ .Pre }}"></i></div>
 | |
| 									{{ end }}
 | |
| 									<h4 class="title"><a href="{{ .URL }}">{{ .Name }}</a></h4>
 | |
| 									<p class="description"><a href="{{ .URL }}">{{ .URL }}</a>{{ if .Post }}<i class="{{ .Post }}"></i>{{ end }}</p>
 | |
| 								</div>
 | |
| 							</div>
 | |
| 						{{ end }}
 | |
| 					{{ end }}
 | |
| 				{{ end }}
 | |
| 			{{ end }}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </section>
 | |
| 
 | |
| </main>
 | |
| 
 | |
| {{ partial "footer.html" . }}
 | |
| 
 |