18 lines
		
	
	
		
			608 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			608 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>Hello</title>
 | |
|   </head>
 | |
| 
 | |
|   <body>
 | |
|     <p>Hostname: {{ ansible_facts.nodename }}</p>
 | |
|     <p>OS: {{ ansible_facts.distribution }} {{ ansible_facts.distribution_version }}</p>
 | |
|     <p>Kernel: {{ ansible_facts.kernel }}</p>
 | |
|     <p>Memory usage: {{ ansible_facts.memfree_mb }}/{{ ansible_facts.memtotal_mb }}MB</p>
 | |
|     <p>Python version: {{ ansible_facts.python_version }}</p>
 | |
|   </body>
 | |
| </html>
 |