24 lines
		
	
	
		
			726 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			726 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% include 'components/header.html' %}
 | |
| 
 | |
| <body>
 | |
|     {% include 'components/nav.html' %}
 | |
|     <main>
 | |
|         {% include 'components/globe.html' %}
 | |
| 
 | |
|         {% set config = { 
 | |
|                 "title": "THREEFOLD AUTONOMOUS INTERNET.",
 | |
|                 "subtitle": "Building a decentralized internet.",
 | |
|                 "image": "static/img/wave.png" } 
 | |
|             %}           
 | |
|         {% include 'components/hero_image.html' %}
 | |
| 
 | |
|         {% set config = { "name": "threefold/faq_tf", "section_name": "threefold/faq_tf_intro" } %}
 | |
|         {% include 'components/faq.html' %}
 | |
| 
 | |
|     </main>
 | |
|     {% include 'components/footer.html' %}
 | |
|     {% include 'components/login.html' %}
 | |
|     {% include 'components/signup.html' %}
 | |
| </body>
 | |
| </html>
 |