├── media ├── 1.jpg ├── 11.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── 9.jpg ├── blog │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ └── 6.jpg ├── gandhi.jpg ├── mandela.jpg ├── teresa.jpg └── portfolio │ ├── 1.jpg │ ├── 10.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── img ├── flags │ ├── f16.png │ ├── f24.png │ ├── f32.png │ ├── f48.png │ ├── f64.png │ ├── f16-glossy.png │ ├── f24-glossy.png │ ├── f32-glossy.png │ ├── f48-glossy.png │ └── f64-glossy.png ├── social │ ├── so24.png │ ├── so24-blue.png │ ├── so24-gray.png │ ├── so24-pink.png │ ├── so24-red.png │ ├── so24-green.png │ ├── so24-lilac.png │ ├── so24-orange.png │ ├── so24-redish.png │ ├── so24-white.png │ ├── so24-yellow.png │ ├── so24-blue-sky.png │ ├── so24-gray-blue.png │ ├── so24-gray-dark.png │ ├── so24-green-sky.png │ ├── so24-blue-light.png │ ├── so24-blue-lighter.png │ ├── so24-gray-light.png │ ├── so24-gray-lighter.png │ ├── so24-green-darker.png │ ├── so24-green-olive.png │ ├── so24-green-soldier.png │ ├── so24-gray-blue-light.png │ └── so24-gray-blue-lighter.png ├── big │ ├── glyph-big.png │ ├── glyph-big-blue.png │ ├── glyph-big-gray.png │ ├── glyph-big-green.png │ ├── glyph-big-lilac.png │ ├── glyph-big-pink.png │ ├── glyph-big-red.png │ ├── glyph-big-white.png │ ├── glyph-big-orange.png │ ├── glyph-big-redish.png │ ├── glyph-big-yellow.png │ ├── glyph-big-blue-light.png │ ├── glyph-big-blue-sky.png │ ├── glyph-big-gray-blue.png │ ├── glyph-big-gray-dark.png │ ├── glyph-big-gray-light.png │ ├── glyph-big-green-sky.png │ ├── glyph-big-blue-lighter.png │ ├── glyph-big-gray-lighter.png │ ├── glyph-big-green-darker.png │ ├── glyph-big-green-olive.png │ ├── glyph-big-gray-blue-light.png │ ├── glyph-big-green-soldier.png │ └── glyph-big-gray-blue-lighter.png └── small │ ├── glyph-small.png │ ├── glyph-small-red.png │ ├── glyph-small-blue.png │ ├── glyph-small-gray.png │ ├── glyph-small-green.png │ ├── glyph-small-lilac.png │ ├── glyph-small-orange.png │ ├── glyph-small-pink.png │ ├── glyph-small-redish.png │ ├── glyph-small-white.png │ ├── glyph-small-yellow.png │ ├── glyph-small-blue-sky.png │ ├── glyph-small-blue-light.png │ ├── glyph-small-gray-blue.png │ ├── glyph-small-gray-dark.png │ ├── glyph-small-gray-light.png │ ├── glyph-small-green-olive.png │ ├── glyph-small-green-sky.png │ ├── glyph-small-blue-lighter.png │ ├── glyph-small-gray-lighter.png │ ├── glyph-small-green-darker.png │ ├── glyph-small-green-soldier.png │ ├── glyph-small-gray-blue-light.png │ └── glyph-small-gray-blue-lighter.png ├── fonts ├── untitled-font-1.eot ├── untitled-font-1.ttf └── untitled-font-1.woff ├── README.md ├── js ├── theme.js └── dc.tips.js ├── contact.html ├── sidebar-left.html ├── sidebar-right.html ├── about.html ├── css ├── fonts.css ├── theme.css └── decorator.css └── index.html /media/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/1.jpg -------------------------------------------------------------------------------- /media/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/11.jpg -------------------------------------------------------------------------------- /media/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/2.jpg -------------------------------------------------------------------------------- /media/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/3.jpg -------------------------------------------------------------------------------- /media/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/4.jpg -------------------------------------------------------------------------------- /media/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/5.jpg -------------------------------------------------------------------------------- /media/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/6.jpg -------------------------------------------------------------------------------- /media/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/7.jpg -------------------------------------------------------------------------------- /media/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/8.jpg -------------------------------------------------------------------------------- /media/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/9.jpg -------------------------------------------------------------------------------- /img/flags/f16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f16.png -------------------------------------------------------------------------------- /img/flags/f24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f24.png -------------------------------------------------------------------------------- /img/flags/f32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f32.png -------------------------------------------------------------------------------- /img/flags/f48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f48.png -------------------------------------------------------------------------------- /img/flags/f64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f64.png -------------------------------------------------------------------------------- /media/blog/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/blog/1.jpg -------------------------------------------------------------------------------- /media/blog/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/blog/2.jpg -------------------------------------------------------------------------------- /media/blog/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/blog/3.jpg -------------------------------------------------------------------------------- /media/blog/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/blog/4.jpg -------------------------------------------------------------------------------- /media/blog/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/blog/5.jpg -------------------------------------------------------------------------------- /media/blog/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/blog/6.jpg -------------------------------------------------------------------------------- /media/gandhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/gandhi.jpg -------------------------------------------------------------------------------- /media/mandela.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/mandela.jpg -------------------------------------------------------------------------------- /media/teresa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/teresa.jpg -------------------------------------------------------------------------------- /img/social/so24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24.png -------------------------------------------------------------------------------- /img/big/glyph-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big.png -------------------------------------------------------------------------------- /media/portfolio/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/1.jpg -------------------------------------------------------------------------------- /media/portfolio/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/10.jpg -------------------------------------------------------------------------------- /media/portfolio/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/2.jpg -------------------------------------------------------------------------------- /media/portfolio/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/3.jpg -------------------------------------------------------------------------------- /media/portfolio/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/4.jpg -------------------------------------------------------------------------------- /media/portfolio/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/5.jpg -------------------------------------------------------------------------------- /media/portfolio/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/6.jpg -------------------------------------------------------------------------------- /media/portfolio/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/7.jpg -------------------------------------------------------------------------------- /media/portfolio/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/8.jpg -------------------------------------------------------------------------------- /media/portfolio/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/media/portfolio/9.jpg -------------------------------------------------------------------------------- /img/flags/f16-glossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f16-glossy.png -------------------------------------------------------------------------------- /img/flags/f24-glossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f24-glossy.png -------------------------------------------------------------------------------- /img/flags/f32-glossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f32-glossy.png -------------------------------------------------------------------------------- /img/flags/f48-glossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f48-glossy.png -------------------------------------------------------------------------------- /img/flags/f64-glossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/flags/f64-glossy.png -------------------------------------------------------------------------------- /img/social/so24-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-blue.png -------------------------------------------------------------------------------- /img/social/so24-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray.png -------------------------------------------------------------------------------- /img/social/so24-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-pink.png -------------------------------------------------------------------------------- /img/social/so24-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-red.png -------------------------------------------------------------------------------- /fonts/untitled-font-1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/fonts/untitled-font-1.eot -------------------------------------------------------------------------------- /fonts/untitled-font-1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/fonts/untitled-font-1.ttf -------------------------------------------------------------------------------- /fonts/untitled-font-1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/fonts/untitled-font-1.woff -------------------------------------------------------------------------------- /img/big/glyph-big-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-blue.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray.png -------------------------------------------------------------------------------- /img/big/glyph-big-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-green.png -------------------------------------------------------------------------------- /img/big/glyph-big-lilac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-lilac.png -------------------------------------------------------------------------------- /img/big/glyph-big-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-pink.png -------------------------------------------------------------------------------- /img/big/glyph-big-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-red.png -------------------------------------------------------------------------------- /img/big/glyph-big-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-white.png -------------------------------------------------------------------------------- /img/small/glyph-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small.png -------------------------------------------------------------------------------- /img/social/so24-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-green.png -------------------------------------------------------------------------------- /img/social/so24-lilac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-lilac.png -------------------------------------------------------------------------------- /img/social/so24-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-orange.png -------------------------------------------------------------------------------- /img/social/so24-redish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-redish.png -------------------------------------------------------------------------------- /img/social/so24-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-white.png -------------------------------------------------------------------------------- /img/social/so24-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-yellow.png -------------------------------------------------------------------------------- /img/big/glyph-big-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-orange.png -------------------------------------------------------------------------------- /img/big/glyph-big-redish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-redish.png -------------------------------------------------------------------------------- /img/big/glyph-big-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-yellow.png -------------------------------------------------------------------------------- /img/small/glyph-small-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-red.png -------------------------------------------------------------------------------- /img/social/so24-blue-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-blue-sky.png -------------------------------------------------------------------------------- /img/social/so24-gray-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray-blue.png -------------------------------------------------------------------------------- /img/social/so24-gray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray-dark.png -------------------------------------------------------------------------------- /img/social/so24-green-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-green-sky.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | Responsive 5 page Startup Template 3 | ---------- 4 | [View Demo](http://start.codable.org) 5 | -------------------------------------------------------------------------------- /img/big/glyph-big-blue-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-blue-light.png -------------------------------------------------------------------------------- /img/big/glyph-big-blue-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-blue-sky.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray-blue.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray-dark.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray-light.png -------------------------------------------------------------------------------- /img/big/glyph-big-green-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-green-sky.png -------------------------------------------------------------------------------- /img/small/glyph-small-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-blue.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray.png -------------------------------------------------------------------------------- /img/small/glyph-small-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-green.png -------------------------------------------------------------------------------- /img/small/glyph-small-lilac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-lilac.png -------------------------------------------------------------------------------- /img/small/glyph-small-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-orange.png -------------------------------------------------------------------------------- /img/small/glyph-small-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-pink.png -------------------------------------------------------------------------------- /img/small/glyph-small-redish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-redish.png -------------------------------------------------------------------------------- /img/small/glyph-small-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-white.png -------------------------------------------------------------------------------- /img/small/glyph-small-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-yellow.png -------------------------------------------------------------------------------- /img/social/so24-blue-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-blue-light.png -------------------------------------------------------------------------------- /img/social/so24-blue-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-blue-lighter.png -------------------------------------------------------------------------------- /img/social/so24-gray-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray-light.png -------------------------------------------------------------------------------- /img/social/so24-gray-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray-lighter.png -------------------------------------------------------------------------------- /img/social/so24-green-darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-green-darker.png -------------------------------------------------------------------------------- /img/social/so24-green-olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-green-olive.png -------------------------------------------------------------------------------- /img/big/glyph-big-blue-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-blue-lighter.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray-lighter.png -------------------------------------------------------------------------------- /img/big/glyph-big-green-darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-green-darker.png -------------------------------------------------------------------------------- /img/big/glyph-big-green-olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-green-olive.png -------------------------------------------------------------------------------- /img/small/glyph-small-blue-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-blue-sky.png -------------------------------------------------------------------------------- /img/social/so24-green-soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-green-soldier.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray-blue-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray-blue-light.png -------------------------------------------------------------------------------- /img/big/glyph-big-green-soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-green-soldier.png -------------------------------------------------------------------------------- /img/small/glyph-small-blue-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-blue-light.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray-blue.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray-dark.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray-light.png -------------------------------------------------------------------------------- /img/small/glyph-small-green-olive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-green-olive.png -------------------------------------------------------------------------------- /img/small/glyph-small-green-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-green-sky.png -------------------------------------------------------------------------------- /img/social/so24-gray-blue-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray-blue-light.png -------------------------------------------------------------------------------- /img/social/so24-gray-blue-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/social/so24-gray-blue-lighter.png -------------------------------------------------------------------------------- /img/big/glyph-big-gray-blue-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/big/glyph-big-gray-blue-lighter.png -------------------------------------------------------------------------------- /img/small/glyph-small-blue-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-blue-lighter.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray-lighter.png -------------------------------------------------------------------------------- /img/small/glyph-small-green-darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-green-darker.png -------------------------------------------------------------------------------- /img/small/glyph-small-green-soldier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-green-soldier.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray-blue-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray-blue-light.png -------------------------------------------------------------------------------- /img/small/glyph-small-gray-blue-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uloga/startup/HEAD/img/small/glyph-small-gray-blue-lighter.png -------------------------------------------------------------------------------- /js/theme.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | 3 | $(window).bind("scroll", function() { 4 | 5 | var topBar = $(".top-bar"); 6 | 7 | var scrollOff = $(".position").offset().top - 50; 8 | 9 | if ($(window).scrollTop() > scrollOff) { 10 | 11 | topBar.addClass("top-bar-active"); 12 | $(".subscrib-form").addClass("animated fadeInUp").removeClass("hidden"); 13 | $(".f1").addClass("animated fadeInLeft").removeClass("hidden"); 14 | $(".f2").addClass("animated fadeInRight").removeClass("hidden"); 15 | $(".promo").removeClass("fadeInUp").addClass("fadeOutDown"); 16 | $(".youtube").addClass("animated fadeInUp").removeClass("hidden"); 17 | } else { 18 | 19 | topBar.removeClass("top-bar-active"); 20 | $(".subscrib-form").removeClass('fadeInUp').addClass('hidden'); 21 | $('.f1').removeClass('fadeInLeft').addClass('hidden'); 22 | $('.f2').removeClass('fadeInRight').addClass('hidden'); 23 | $('.promo').removeClass('fadeOutDown').addClass('fadeInDown'); 24 | $(".youtube").removeClass("animated fadeInUp").addClass("hidden"); 25 | 26 | } 27 | 28 | }); 29 | 30 | // single content 31 | var $window = $(window).height(); 32 | var $footer = $('.footer').outerHeight(); 33 | $('.single-wrapper').css("min-height", $window - $footer + "px"); 34 | 35 | //tooltips 36 | $('.social a').dcTip({background: "#3B8CD3"}); 37 | //animations 38 | $('.promo').addClass('animated fadeInUp'); 39 | 40 | 41 | /*responsive menu */ 42 | var menu = $('.top-bar .list-inline'), 43 | act = $('.menu-action'); 44 | 45 | $(act).on("click", function(e){ 46 | var $this = $(this), 47 | open = $this.hasClass('res-open'); 48 | 49 | if(open){ 50 | $this.addClass('res-close'); 51 | $this.removeClass('res-open'); 52 | $(menu).stop().slideDown("fast"); 53 | $this.text('x'); 54 | }else{ 55 | $this.addClass('res-open'); 56 | $this.removeClass('res-close'); 57 | $(menu).stop().slideUp("fast"); 58 | $this.text('+'); 59 | } 60 | 61 | 62 | e.preventDefault(); 63 | }); 64 | 65 | $(window).resize(function() { 66 | var vW = $(window).width(); 67 | if (vW > 768) { 68 | $(menu).css('display', 'block'); 69 | $(act).removeClass('res-close').addClass('res-open').text('+'); 70 | }else { 71 | $(menu).css('display', 'none'); 72 | } 73 | }); 74 | //ie8 Grid System fix 75 | $('.grid2 li:nth-child(2n+0)').css({"margin-right": "0"}); 76 | $('.grid3 li:nth-child(3n+0)').css({"margin-right": "0"}); 77 | 78 | })(jQuery); 79 | -------------------------------------------------------------------------------- /js/dc.tips.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | 3 | 'use strict'; 4 | 5 | var Tip = function(options){ 6 | 7 | var settings = $.extend({ 8 | component : "tooltip", 9 | trigger : "mouseover", //focus 10 | selector : ".", 11 | tip_class : 'tip-wrapper', 12 | tip_wrapper : "
", 13 | background : "#000", 14 | color : "#fff" 15 | }, options); 16 | 17 | Tip.process($(this), settings); 18 | return this; 19 | 20 | }; 21 | 22 | Tip.about = { 23 | component: "Decorator Tool Tip", 24 | version : "1.0", 25 | author : "Alan Museljic", 26 | website : "http://www.uloga.net", 27 | licence : "MIT", 28 | copyright: "codable.org" 29 | }; 30 | 31 | //simple tool tip... 32 | Tip.process = function(elem, settings){ 33 | 34 | elem.each(function(e){ 35 | 36 | var $this = $(this), 37 | data = $this.attr("title"), 38 | template = '
110 |
111 | 114 | Contrary to popular belief, Lorem Ipsum is not simply random text. 115 | It has roots in a piece of classical Latin literature from 45 BC, making 116 | it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney 117 | College in Virginia, looked up one of the more obscure Latin words, consectetur, 118 | from a Lorem Ipsum passage, and going through the cites of the word in classical literature, 119 | discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 120 | "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. 121 | This book is a treatise on the theory of ethics, very popular during the Renaissance. 122 | The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. 123 | The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. 124 | Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced 125 | in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 126 |
127 | 128 |136 | Contrary to popular belief, Lorem Ipsum is not simply random text. 137 | It has roots in a piece of classical Latin literature from 45 BC, making 138 | it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney 139 | College in Virginia, looked up one of the more obscure Latin words, consectetur, 140 | from a Lorem Ipsum passage, and going through the cites of the word in classical literature, 141 | discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 142 | "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. 143 | This book is a treatise on the theory of ethics, very popular during the Renaissance. 144 | The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. 145 | The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. 146 | Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced 147 | in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 148 |
149 |
55 |
56 | 59 | Contrary to popular belief, Lorem Ipsum is not simply random text. 60 | It has roots in a piece of classical Latin literature from 45 BC, making 61 | it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney 62 | College in Virginia, looked up one of the more obscure Latin words, consectetur, 63 | from a Lorem Ipsum passage, and going through the cites of the word in classical literature, 64 | discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 65 | "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. 66 | This book is a treatise on the theory of ethics, very popular during the Renaissance. 67 | The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. 68 | The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. 69 | Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced 70 | in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 71 |
72 | 73 |81 | Contrary to popular belief, Lorem Ipsum is not simply random text. 82 | It has roots in a piece of classical Latin literature from 45 BC, making 83 | it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney 84 | College in Virginia, looked up one of the more obscure Latin words, consectetur, 85 | from a Lorem Ipsum passage, and going through the cites of the word in classical literature, 86 | discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 87 | "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. 88 | This book is a treatise on the theory of ethics, very popular during the Renaissance. 89 | The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. 90 | The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. 91 | Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced 92 | in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 93 |
94 |
49 | 57 | Contrary to popular belief, Lorem Ipsum is not simply random text. 58 | It has roots in a piece of classical Latin literature from 45 BC, making 59 | it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney 60 | College in Virginia, looked up one of the more obscure Latin words, consectetur, 61 | from a Lorem Ipsum passage, and going through the cites of the word in classical literature, 62 | discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 63 | "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. 64 | This book is a treatise on the theory of ethics, very popular during the Renaissance. 65 | The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. 66 | The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. 67 | Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced 68 | in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 69 |
70 | 71 |79 | Contrary to popular belief, Lorem Ipsum is not simply random text. 80 | It has roots in a piece of classical Latin literature from 45 BC, making 81 | it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney 82 | College in Virginia, looked up one of the more obscure Latin words, consectetur, 83 | from a Lorem Ipsum passage, and going through the cites of the word in classical literature, 84 | discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of 85 | "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. 86 | This book is a treatise on the theory of ethics, very popular during the Renaissance. 87 | The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. 88 | The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. 89 | Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced 90 | in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. 91 |
92 |70 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived 71 |
72 |83 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived 84 |
85 |96 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived 97 |
98 |
127 | 1 day ago - In: Activity
130 |131 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. 132 | Lorem Ipsum has been the industry's standard dummy text ever since the 1500s 133 |
134 |
138 | 1 day ago - In: Activity
141 |142 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. 143 | Lorem Ipsum has been the industry's standard dummy text ever since the 1500s 144 |
145 |








