mirror of
				https://github.com/mmumshad/ansible-playable.git
				synced 2025-03-09 23:38:54 +00:00 
			
		
		
		
	Update Main landing page.
This commit is contained in:
		
							parent
							
								
									1c6b6ad4e3
								
							
						
					
					
						commit
						5e40fb78d5
					
				
					 3 changed files with 6 additions and 5 deletions
				
			
		| 
						 | 
					@ -33,7 +33,7 @@
 | 
				
			||||||
        </ul>
 | 
					        </ul>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      <div class="col-lg-6 ">
 | 
					      <div class="col-lg-6 ">
 | 
				
			||||||
        <img class="md-whiteframe-21dp" src="assets/images/ansible-galaxy.jpeg" >
 | 
					        <a href="https://galaxy.ansible.com" target="_blank"><img class="md-whiteframe-21dp" width="100%" src="assets/images/ansible-galaxy.png" ></a>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
| 
						 | 
					@ -71,7 +71,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div style="color: #2e3b45;margin-top:10px;padding-top:20px;padding-bottom:50px;background: #fabc3d;">
 | 
					<div style="color: #f2dede;margin-top:10px;padding-top:20px;padding-bottom:50px;background: #a94442;">
 | 
				
			||||||
  <div class="container" >
 | 
					  <div class="container" >
 | 
				
			||||||
    <div>
 | 
					    <div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								client/assets/images/ansible-galaxy.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								client/assets/images/ansible-galaxy.png
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 650 KiB  | 
| 
						 | 
					@ -6,12 +6,13 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import errors from './components/errors';
 | 
					import errors from './components/errors';
 | 
				
			||||||
import path from 'path';
 | 
					import path from 'path';
 | 
				
			||||||
 | 
					import * as auth from './auth/auth.service';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default function(app) {
 | 
					export default function(app) {
 | 
				
			||||||
  // Insert routes below
 | 
					  // Insert routes below
 | 
				
			||||||
  app.use('/api/custom_modules', require('./api/custom_module'));
 | 
					  app.use('/api/custom_modules', auth.isAuthenticated(), require('./api/custom_module'));
 | 
				
			||||||
  app.use('/api/ansible', require('./api/ansible'));
 | 
					  app.use('/api/ansible', auth.isAuthenticated(), require('./api/ansible'));
 | 
				
			||||||
  app.use('/api/projects', require('./api/project'));
 | 
					  app.use('/api/projects', auth.isAuthenticated(), require('./api/project'));
 | 
				
			||||||
  app.use('/api/things', require('./api/thing'));
 | 
					  app.use('/api/things', require('./api/thing'));
 | 
				
			||||||
  app.use('/api/users', require('./api/user'));
 | 
					  app.use('/api/users', require('./api/user'));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue