40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8"/>
 | |
|     <title>[test] HD App</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
 | |
|     <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
 | |
|     <!-- Scripts-->
 | |
|     <script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.2.7/webcomponents-loader.js" integrity="sha256-fz7VMnmo2h7TlM7CBea8/vpbWpdQnbp20TnwmRwi/KU=" crossorigin="anonymous"></script>
 | |
|     <!-- Web components-->
 | |
|     <link rel="import" href="https://cdn.happy-dev.fr/sib-core/sib-display.html"/>
 | |
| 
 | |
|     <style>
 | |
|       body.debug *:not(script):not(button){
 | |
|         display: block;
 | |
|         padding: 3px;
 | |
|         margin: 3px;
 | |
|         border: 1px solid #f006;
 | |
|       }
 | |
|     </style>
 | |
|   </head>
 | |
|   <body>
 | |
|     <button onclick="document.body.classList.toggle('debug')">debug</button>
 | |
|     <div id="job-offers">
 | |
|       <h1>Job offers</h1>
 | |
|       <sib-display id="offers-list"
 | |
|         data-src="https://test-paris.happy-dev.fr/job-offers/"
 | |
|         data-fields="title, description, skills"
 | |
|         widget-skills="sib-display-lookuplist"
 | |
|       ></sib-display>
 | |
|     </div>
 | |
|     <div id="members">
 | |
|       <h1>Members</h1>
 | |
|       <sib-display id="profiles-list"
 | |
|         data-src="https://test-paris.happy-dev.fr/members/"
 | |
|         data-fields="pseudo, bio"
 | |
|       ></sib-display>
 | |
|     </div>
 | |
|   </body>
 | |
| </html> |