mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-10-31 09:18:24 +00:00 
			
		
		
		
	add gumpy + sass
This commit is contained in:
		
							
								
								
									
										104
									
								
								Resources/assets/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										104
									
								
								Resources/assets/index.html
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,104 @@ | ||||
| <!doctype html> | ||||
| <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> | ||||
| <!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]--> | ||||
| <!--[if IE 7]>    <html class="no-js ie7 oldie" lang="en"> <![endif]--> | ||||
| <!--[if IE 8]>    <html class="no-js ie8 oldie" lang="en"> <![endif]--> | ||||
| <!--[if IE 9]>    <html class="no-js ie9" lang="en"> <![endif]--> | ||||
| <!-- Consider adding an manifest.appcache: h5bp.com/d/Offline --> | ||||
| <!--[if gt IE 9]><!--> <html class="no-js" lang="en" itemscope="" itemtype="http://schema.org/Product"> <!--<![endif]--> | ||||
| <head> | ||||
| 	<meta charset="utf-8"> | ||||
|  | ||||
| 	<!-- Use the .htaccess and remove these lines to avoid edge case issues. | ||||
| 			 More info: h5bp.com/b/378 --> | ||||
| 	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||||
|  | ||||
| 	<title>Gumby - A Flexible, Responsive CSS Framework - Powered by SASS</title> | ||||
| 	<meta name="description" content=""> | ||||
| 	<meta name="keywords" content=""> | ||||
| 	<meta name="author" content="humans.txt"> | ||||
|  | ||||
| 	<link rel="shortcut icon" href="favicon.png" type="image/x-icon"> | ||||
|  | ||||
| 	<!-- Facebook Metadata /--> | ||||
| 	<meta property="fb:page_id" content=""> | ||||
| 	<meta property="og:image" content=""> | ||||
| 	<meta property="og:description" content=""> | ||||
| 	<meta property="og:title" content=""> | ||||
|  | ||||
| 	<!-- Google+ Metadata /--> | ||||
| 	<meta itemprop="name" content=""> | ||||
| 	<meta itemprop="description" content=""> | ||||
| 	<meta itemprop="image" content=""> | ||||
|  | ||||
| 	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> | ||||
|  | ||||
| 	<!-- We highly recommend you use SASS and write your custom styles in sass/_custom.scss. | ||||
| 		 However, there is a blank style.css in the css directory should you prefer --> | ||||
| 	<link rel="stylesheet" href="css/gumby.css"> | ||||
| 	<!-- <link rel="stylesheet" href="css/style.css"> --> | ||||
|  | ||||
| 	<script src="bower_components/gumby/js/libs/modernizr-2.6.2.min.js"></script> | ||||
| </head> | ||||
|  | ||||
| <body> | ||||
|  | ||||
|  | ||||
| 	<!-- Grab Google CDN's jQuery, fall back to local if offline --> | ||||
| 	<!-- 2.0 for modern browsers, 1.10 for .oldie --> | ||||
| 	<script> | ||||
| 	var oldieCheck = Boolean(document.getElementsByTagName('html')[0].className.match(/\soldie\s/g)); | ||||
| 	if(!oldieCheck) { | ||||
| 	document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"><\/script>'); | ||||
| 	} else { | ||||
| 	document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"><\/script>'); | ||||
| 	} | ||||
| 	</script> | ||||
| 	<script> | ||||
| 	if(!window.jQuery) { | ||||
| 	if(!oldieCheck) { | ||||
| 	  document.write('<script src="bower_components/gumby/js/libs/jquery-2.0.2.min.js"><\/script>'); | ||||
| 	} else { | ||||
| 	  document.write('<script src="bower_components/gumby/js/libs/jquery-1.10.1.min.js"><\/script>'); | ||||
| 	} | ||||
| 	} | ||||
| 	</script> | ||||
|  | ||||
| 	<!-- | ||||
| 	Include gumby.js followed by UI modules followed by gumby.init.js | ||||
| 	Or concatenate and minify into a single file --> | ||||
| 	<script gumby-touch="js/libs" src="bower_components/gumby/js/libs/gumby.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.retina.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.fixed.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.skiplink.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.toggleswitch.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.checkbox.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.radiobtn.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.tabs.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/gumby.navbar.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/ui/jquery.validation.js"></script> | ||||
| 	<script src="bower_components/gumby/js/libs/gumby.init.js"></script> | ||||
|  | ||||
| 	<!-- | ||||
| 	gumby.min.js contains gumby.js, all UI modules and gumby.init.js | ||||
| 	<script src="js/libs/gumby.min.js"></script> --> | ||||
| 	<script src="bower_components/gumby/js/plugins.js"></script> | ||||
| 	<script src="bower_components/gumby/js/main.js"></script> | ||||
|  | ||||
| 	<!-- Change UA-XXXXX-X to be your site's ID --> | ||||
| 	<!--<script> | ||||
| 	window._gaq = [['_setAccount','UAXXXXXXXX1'],['_trackPageview'],['_trackPageLoadTime']]; | ||||
| 	Modernizr.load({ | ||||
| 	  load: ('https:' == location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js' | ||||
| 	}); | ||||
| 	</script>--> | ||||
|  | ||||
| 	<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6. | ||||
| 	   chromium.org/developers/how-tos/chrome-frame-getting-started --> | ||||
| 	<!--[if lt IE 7 ]> | ||||
| 	<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script> | ||||
| 	<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script> | ||||
| 	<![endif]--> | ||||
|  | ||||
|   </body> | ||||
| </html> | ||||
		Reference in New Issue
	
	Block a user