Created
January 2, 2018 18:54
-
-
Save bengrunfeld/d8e29cecb3bce4ef45592a34c49c7cc6 to your computer and use it in GitHub Desktop.
Credible.dev Page Source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en-US"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>credible – Just another WordPress site</title> | |
<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
<link rel='dns-prefetch' href='//s.w.org' /> | |
<script type="text/javascript"> | |
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.3\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/credible.dev\/wp-includes\/js\/wp-emoji.js?ver=4.9.1","twemoji":"http:\/\/credible.dev\/wp-includes\/js\/twemoji.js?ver=4.9.1"}}; | |
( function( window, document, settings ) { | |
var src, ready, ii, tests; | |
/* | |
* Create a canvas element for testing native browser support | |
* of emoji. | |
*/ | |
var canvas = document.createElement( 'canvas' ); | |
var context = canvas.getContext && canvas.getContext( '2d' ); | |
/** | |
* Check if two sets of Emoji characters render the same. | |
* | |
* @param set1 array Set of Emoji characters. | |
* @param set2 array Set of Emoji characters. | |
* @returns {boolean} True if the two sets render the same. | |
*/ | |
function emojiSetsRenderIdentically( set1, set2 ) { | |
var stringFromCharCode = String.fromCharCode; | |
// Cleanup from previous test. | |
context.clearRect( 0, 0, canvas.width, canvas.height ); | |
context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 ); | |
var rendered1 = canvas.toDataURL(); | |
// Cleanup from previous test. | |
context.clearRect( 0, 0, canvas.width, canvas.height ); | |
context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 ); | |
var rendered2 = canvas.toDataURL(); | |
return rendered1 === rendered2; | |
} | |
/** | |
* Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph | |
* made of two characters, so some browsers (notably, Firefox OS X) don't support them. | |
* | |
* @since 4.2.0 | |
* | |
* @param type {String} Whether to test for support of "flag" or "emoji". | |
* @return {Boolean} True if the browser can render emoji, false if it cannot. | |
*/ | |
function browserSupportsEmoji( type ) { | |
var isIdentical; | |
if ( ! context || ! context.fillText ) { | |
return false; | |
} | |
/* | |
* Chrome on OS X added native emoji rendering in M41. Unfortunately, | |
* it doesn't work when the font is bolder than 500 weight. So, we | |
* check for bold rendering support to avoid invisible emoji in Chrome. | |
*/ | |
context.textBaseline = 'top'; | |
context.font = '600 32px Arial'; | |
switch ( type ) { | |
case 'flag': | |
/* | |
* Test for UN flag compatibility. This is the least supported of the letter locale flags, | |
* so gives us an easy test for full support. | |
* | |
* To test for support, we try to render it, and compare the rendering to how it would look if | |
* the browser doesn't render it correctly ([U] + [N]). | |
*/ | |
isIdentical = emojiSetsRenderIdentically( | |
[ 55356, 56826, 55356, 56819 ], | |
[ 55356, 56826, 8203, 55356, 56819 ] | |
); | |
if ( isIdentical ) { | |
return false; | |
} | |
/* | |
* Test for English flag compatibility. England is a country in the United Kingdom, it | |
* does not have a two letter locale code but rather an five letter sub-division code. | |
* | |
* To test for support, we try to render it, and compare the rendering to how it would look if | |
* the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). | |
*/ | |
isIdentical = emojiSetsRenderIdentically( | |
[ 55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447 ], | |
[ 55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447 ] | |
); | |
return ! isIdentical; | |
case 'emoji': | |
/* | |
* Emoji 5 has fairies of all genders. | |
* | |
* To test for support, try to render a new emoji (fairy, male), then compares | |
* it to how it would look if the browser doesn't render it correctly | |
* (fairy + male sign). | |
*/ | |
isIdentical = emojiSetsRenderIdentically( | |
[ 55358, 56794, 8205, 9794, 65039 ], | |
[ 55358, 56794, 8203, 9794, 65039 ] | |
); | |
return ! isIdentical; | |
} | |
return false; | |
} | |
function addScript( src ) { | |
var script = document.createElement( 'script' ); | |
script.src = src; | |
script.defer = script.type = 'text/javascript'; | |
document.getElementsByTagName( 'head' )[0].appendChild( script ); | |
} | |
tests = Array( 'flag', 'emoji' ); | |
settings.supports = { | |
everything: true, | |
everythingExceptFlag: true | |
}; | |
for( ii = 0; ii < tests.length; ii++ ) { | |
settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] ); | |
settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ]; | |
if ( 'flag' !== tests[ ii ] ) { | |
settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ]; | |
} | |
} | |
settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; | |
settings.DOMReady = false; | |
settings.readyCallback = function() { | |
settings.DOMReady = true; | |
}; | |
if ( ! settings.supports.everything ) { | |
ready = function() { | |
settings.readyCallback(); | |
}; | |
if ( document.addEventListener ) { | |
document.addEventListener( 'DOMContentLoaded', ready, false ); | |
window.addEventListener( 'load', ready, false ); | |
} else { | |
window.attachEvent( 'onload', ready ); | |
document.attachEvent( 'onreadystatechange', function() { | |
if ( 'complete' === document.readyState ) { | |
settings.readyCallback(); | |
} | |
} ); | |
} | |
src = settings.source || {}; | |
if ( src.concatemoji ) { | |
addScript( src.concatemoji ); | |
} else if ( src.wpemoji && src.twemoji ) { | |
addScript( src.twemoji ); | |
addScript( src.wpemoji ); | |
} | |
} | |
} )( window, document, window._wpemojiSettings ); | |
</script> | |
<style type="text/css"> | |
img.wp-smiley, | |
img.emoji { | |
display: inline !important; | |
border: none !important; | |
box-shadow: none !important; | |
height: 1em !important; | |
width: 1em !important; | |
margin: 0 .07em !important; | |
vertical-align: -0.1em !important; | |
background: none !important; | |
padding: 0 !important; | |
} | |
</style> | |
<link rel='stylesheet' id='dashicons-css' href='http://credible.dev/wp-includes/css/dashicons.css?ver=4.9.1' type='text/css' media='all' /> | |
<link rel='stylesheet' id='admin-bar-css' href='http://credible.dev/wp-includes/css/admin-bar.css?ver=4.9.1' type='text/css' media='all' /> | |
<link rel='stylesheet' id='credible-fonts-css' href='//fonts.googleapis.com/css?family=Roboto:700|Open+Sans:400,400i,700,700i,800' type='text/css' media='all' /> | |
<link rel='stylesheet' id='credible-css' href='http://credible.dev/wp-content/themes/credible/dist/styles/main.css?ver=1514919005' type='text/css' media='all' /> | |
<script type='text/javascript' src='http://credible.dev/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script> | |
<script type='text/javascript' src='http://credible.dev/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script> | |
<link rel='https://api.w.org/' href='http://credible.dev/wp-json/' /> | |
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://credible.dev/xmlrpc.php?rsd" /> | |
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://credible.dev/wp-includes/wlwmanifest.xml" /> | |
<meta name="generator" content="WordPress 4.9.1" /> | |
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> | |
<style type="text/css" media="print">#wpadminbar { display:none; }</style> | |
<style type="text/css" media="screen"> | |
html { margin-top: 32px !important; } | |
* html body { margin-top: 32px !important; } | |
@media screen and ( max-width: 782px ) { | |
html { margin-top: 46px !important; } | |
* html body { margin-top: 46px !important; } | |
} | |
</style> | |
</head> | |
<body class="home blog logged-in admin-bar no-customize-support has-sidebar-blog has-lender-table lender-table--hasStickyHeader" itemscope itemtype="http://schema.org/WebPage"> | |
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<defs> | |
<symbol id="fa-svg-search" viewBox="0 0 26 28"> | |
<title>search</title> | |
<path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path> | |
</symbol> | |
<symbol id="fa-svg-facebook-square" viewBox="0 0 24 28"> | |
<title>facebook-square</title> | |
<path d="M19.5 2c2.484 0 4.5 2.016 4.5 4.5v15c0 2.484-2.016 4.5-4.5 4.5h-2.938v-9.297h3.109l0.469-3.625h-3.578v-2.312c0-1.047 0.281-1.75 1.797-1.75l1.906-0.016v-3.234c-0.328-0.047-1.469-0.141-2.781-0.141-2.766 0-4.672 1.687-4.672 4.781v2.672h-3.125v3.625h3.125v9.297h-8.313c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15z"></path> | |
</symbol> | |
<symbol id="fa-svg-linkedin-square" viewBox="0 0 24 28"> | |
<title>linkedin-square</title> | |
<path d="M3.703 22.094h3.609v-10.844h-3.609v10.844zM7.547 7.906c-0.016-1.062-0.781-1.875-2.016-1.875s-2.047 0.812-2.047 1.875c0 1.031 0.781 1.875 2 1.875h0.016c1.266 0 2.047-0.844 2.047-1.875zM16.688 22.094h3.609v-6.219c0-3.328-1.781-4.875-4.156-4.875-1.937 0-2.797 1.078-3.266 1.828h0.031v-1.578h-3.609s0.047 1.016 0 10.844v0h3.609v-6.062c0-0.313 0.016-0.641 0.109-0.875 0.266-0.641 0.859-1.313 1.859-1.313 1.297 0 1.813 0.984 1.813 2.453v5.797zM24 6.5v15c0 2.484-2.016 4.5-4.5 4.5h-15c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15c2.484 0 4.5 2.016 4.5 4.5z"></path> | |
</symbol> | |
<symbol id="fa-svg-twitter" viewBox="0 0 26 28"> | |
<title>twitter</title> | |
<path d="M25.312 6.375c-0.688 1-1.547 1.891-2.531 2.609 0.016 0.219 0.016 0.438 0.016 0.656 0 6.672-5.078 14.359-14.359 14.359-2.859 0-5.516-0.828-7.75-2.266 0.406 0.047 0.797 0.063 1.219 0.063 2.359 0 4.531-0.797 6.266-2.156-2.219-0.047-4.078-1.5-4.719-3.5 0.313 0.047 0.625 0.078 0.953 0.078 0.453 0 0.906-0.063 1.328-0.172-2.312-0.469-4.047-2.5-4.047-4.953v-0.063c0.672 0.375 1.453 0.609 2.281 0.641-1.359-0.906-2.25-2.453-2.25-4.203 0-0.938 0.25-1.797 0.688-2.547 2.484 3.062 6.219 5.063 10.406 5.281-0.078-0.375-0.125-0.766-0.125-1.156 0-2.781 2.25-5.047 5.047-5.047 1.453 0 2.766 0.609 3.687 1.594 1.141-0.219 2.234-0.641 3.203-1.219-0.375 1.172-1.172 2.156-2.219 2.781 1.016-0.109 2-0.391 2.906-0.781z"></path> | |
</symbol> | |
<symbol id="fa-svg-envelope" viewBox="0 0 28 28"> | |
<title>envelope</title> | |
<path d="M28 11.094v12.406c0 1.375-1.125 2.5-2.5 2.5h-23c-1.375 0-2.5-1.125-2.5-2.5v-12.406c0.469 0.516 1 0.969 1.578 1.359 2.594 1.766 5.219 3.531 7.766 5.391 1.313 0.969 2.938 2.156 4.641 2.156h0.031c1.703 0 3.328-1.188 4.641-2.156 2.547-1.844 5.172-3.625 7.781-5.391 0.562-0.391 1.094-0.844 1.563-1.359zM28 6.5c0 1.75-1.297 3.328-2.672 4.281-2.438 1.687-4.891 3.375-7.313 5.078-1.016 0.703-2.734 2.141-4 2.141h-0.031c-1.266 0-2.984-1.437-4-2.141-2.422-1.703-4.875-3.391-7.297-5.078-1.109-0.75-2.688-2.516-2.688-3.938 0-1.531 0.828-2.844 2.5-2.844h23c1.359 0 2.5 1.125 2.5 2.5z"></path> | |
</symbol> | |
</defs> | |
</svg> | |
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<defs> | |
<symbol id="icon-checkmark" viewBox="0 0 32 32"> | |
<title>checkmark</title> | |
<path d="M28.85 6.85l-3.431-2.706c-0.106-0.088-0.238-0.15-0.387-0.15s-0.288 0.063-0.394 0.156l-12.481 16.038c0 0-4.906-4.719-5.044-4.856s-0.319-0.369-0.594-0.369c-0.275 0-0.4 0.194-0.544 0.338-0.106 0.113-1.856 1.95-2.719 2.863-0.050 0.056-0.081 0.087-0.125 0.131-0.075 0.106-0.125 0.225-0.125 0.356 0 0.137 0.050 0.25 0.125 0.356l0.175 0.163c0 0 8.706 8.363 8.85 8.506s0.319 0.325 0.575 0.325c0.25 0 0.456-0.269 0.575-0.387l15.569-20c0.075-0.106 0.125-0.225 0.125-0.362 0-0.156-0.063-0.287-0.15-0.4z"></path> | |
</symbol> | |
<symbol id="icon-close" viewBox="0 0 32 32"> | |
<title>close</title> | |
<path d="M27.725 24.194l-8.2-8.231 8.219-8.125c0.337-0.338 0.337-0.888 0-1.225l-2.337-2.35c-0.163-0.162-0.381-0.25-0.613-0.25s-0.45 0.094-0.613 0.25l-8.181 8.1-8.194-8.094c-0.162-0.162-0.381-0.25-0.612-0.25s-0.45 0.094-0.612 0.25l-2.331 2.35c-0.337 0.338-0.337 0.888 0 1.225l8.219 8.125-8.194 8.225c-0.162 0.163-0.256 0.381-0.256 0.613s0.088 0.45 0.256 0.613l2.338 2.35c0.169 0.169 0.388 0.256 0.612 0.256 0.219 0 0.444-0.081 0.612-0.256l8.162-8.2 8.169 8.194c0.169 0.169 0.387 0.256 0.613 0.256 0.219 0 0.444-0.081 0.613-0.256l2.337-2.35c0.163-0.163 0.256-0.381 0.256-0.613-0.006-0.225-0.1-0.444-0.262-0.606z"></path> | |
</symbol> | |
<symbol id="icon-help-circled" viewBox="0 0 32 32"> | |
<title>help-circled</title> | |
<path d="M16 2c-7.731 0-14 6.269-14 14s6.269 14 14 14c7.731 0 14-6.269 14-14s-6.269-14-14-14zM17.262 22.419c-0.031 1.113-0.856 1.8-1.925 1.769-1.025-0.031-1.831-0.762-1.8-1.881 0.031-1.113 0.881-1.819 1.906-1.788 1.075 0.031 1.856 0.788 1.819 1.9zM20.306 14.463c-0.262 0.369-0.85 0.844-1.587 1.419l-0.819 0.563c-0.4 0.306-0.65 0.669-0.781 1.081-0.069 0.219-0.119 0.788-0.131 1.169-0.006 0.075-0.050 0.244-0.281 0.244s-2.188 0-2.444 0c-0.256 0-0.287-0.15-0.281-0.225 0.037-1.038 0.188-1.894 0.619-2.581 0.581-0.925 2.219-1.9 2.219-1.9 0.25-0.188 0.444-0.387 0.594-0.606 0.275-0.375 0.5-0.794 0.5-1.244 0-0.519-0.125-1.012-0.456-1.425-0.387-0.481-0.806-0.713-1.613-0.713-0.794 0-1.256 0.4-1.588 0.925s-0.275 1.144-0.275 1.706h-3.044c0-2.125 0.556-3.481 1.731-4.281 0.794-0.544 1.806-0.781 2.988-0.781 1.55 0 2.781 0.287 3.869 1.113 1.006 0.762 1.538 1.838 1.538 3.287 0 0.894-0.313 1.644-0.756 2.25z"></path> | |
</symbol> | |
<symbol id="icon-locked" viewBox="0 0 32 32"> | |
<title>locked</title> | |
<path d="M5.4 30h21.2c0.769 0 1.4-0.619 1.4-1.381v-13.244c0-0.762-0.625-1.375-1.4-1.375h-1.35v-1.931c0-2.594-1.012-5.475-2.663-7.213-1.644-1.737-4-2.856-6.581-2.856-0.006 0-0.006 0-0.006 0s-0.006 0-0.006 0c-2.581 0-4.938 1.119-6.581 2.85-1.65 1.737-2.662 4.619-2.662 7.213v1.938h-1.35c-0.775 0-1.4 0.619-1.4 1.375v13.244c0 0.762 0.625 1.381 1.4 1.381zM10.063 12.069c0-1.706 0.619-3.819 1.756-5.019v0-0.019c1.1-1.162 2.619-1.844 4.175-1.844h0.012c1.556 0 3.075 0.681 4.175 1.844v0.013l-0.006 0.006c1.144 1.2 1.756 3.313 1.756 5.019v1.931h-11.869v-1.931z"></path> | |
</symbol> | |
</defs> | |
</svg> | |
<div class="navbar-placeholder"></div> | |
<header id="navbar" class="global navbar navbar-light navbar-fixed-top hidden-scroll-down" itemscope itemtype="http://schema.org/WPHeader"> | |
<div class="navbar-styles"> | |
<div class="container"> | |
<div class="row flex-items-xs-middle"> | |
<div class="col-xs col-brand"> | |
<a class="navbar-brand" href="http://credible.dev/" itemscope itemtype="http://schema.org/Organization"> | |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 570 126.7"><path fill="#58BF93" d="M339.6 34.1c8.6 0 15.6-7 15.6-15.6s-7-15.6-15.6-15.6-15.6 7-15.6 15.6 7 15.6 15.6 15.6z"/><path fill="#2856A2" d="M507.5 84.8c.3 6.7 2.3 12 5.8 15.9 3.5 3.9 8.1 5.9 13.9 5.9 3.8 0 7.2-.9 10.1-2.6 2.9-1.8 4.8-4.2 5.6-7.3h24c-2.7 9.1-7.5 16-14.3 20.9-6.8 4.9-14.9 7.3-24.4 7.3-29.3 0-44-16-44-47.9 0-6.8.9-13 2.9-18.4 1.9-5.5 4.7-10.2 8.3-14.1 3.6-3.9 8.1-6.9 13.3-9 5.3-2.1 11.3-3.1 18.1-3.1 13.6 0 23.8 4.3 30.8 13.1 7 8.7 10.5 21.8 10.5 39.4h-60.6v-.1zM83.2 90.9c-.6 5.1-2.1 9.8-4.4 13.9-2.3 4.2-5.3 7.8-8.9 10.7-3.6 3-7.6 5.3-12.2 7-4.6 1.7-9.6 2.5-14.9 2.5-6 0-11.4-1-16.4-2.9-4.9-1.9-9.2-4.9-12.8-8.9-3.6-4-6.3-8.9-8.3-14.8-2-5.9-3-12.8-3-20.7 0-7.9 1-14.7 3-20.4 2-5.7 4.7-10.4 8.3-14 3.6-3.6 7.9-6.3 13-8.1 5.1-1.8 10.7-2.7 16.9-2.7 5.7 0 11 .8 15.6 2.3 4.7 1.6 8.8 3.8 12.3 6.8s6.3 6.6 8.3 10.8c2 4.2 3.2 8.8 3.6 13.9H60c-.6-4.5-2.4-8.1-5.5-10.6-3-2.6-6.8-3.8-11.2-3.8-2.5 0-4.8.4-7 1.3-2.2.8-4 2.2-5.6 4.2-1.6 2-2.9 4.6-3.9 7.9-1 3.3-1.4 7.3-1.4 12.1 0 9.7 1.7 16.8 5.2 21.5 3.5 4.7 7.4 7 12 7s8.4-1.3 11.6-3.7c3.2-2.5 5.1-6.2 5.6-10.9h23.4v-.4zm5.9 31.9v-88H111v10.6c1.9-3 3.9-5.3 6-7 2.1-1.7 4.2-3 6.4-3.8 2.2-.9 4.5-1.5 6.7-1.7 2.3-.3 4.6-.4 6.9-.4h3.1v23.8c-2.1-.4-4.3-.5-6.4-.5-14.2 0-21.3 7.1-21.3 21.3v45.8H89.1v-.1zm77.7-38c.3 6.7 2.3 12 5.8 15.9 3.5 3.9 8.1 5.9 13.9 5.9 3.8 0 7.2-.9 10.1-2.6 2.9-1.8 4.8-4.2 5.6-7.3h24c-2.8 9.1-7.5 16-14.3 20.9-6.8 4.9-14.9 7.3-24.3 7.3-29.4 0-44.1-16-44.1-47.9 0-6.8 1-13 2.9-18.4 1.9-5.5 4.7-10.2 8.3-14.1 3.6-3.9 8.1-6.9 13.3-9 5.2-2.1 11.3-3.1 18.1-3.1 13.6 0 23.9 4.3 30.9 13.1 7 8.7 10.5 21.8 10.5 39.4h-60.7v-.1zm36.7-14.7c-.1-3.2-.7-6-1.7-8.5s-2.4-4.5-4-6.1c-1.7-1.6-3.6-2.8-5.7-3.6-2.2-.8-4.4-1.2-6.6-1.2-4.6 0-8.7 1.7-12.1 5.1-3.4 3.4-5.3 8.1-5.8 14.2h35.9v.1zm92.1 52.7l-.2-10.7c-5.4 8.7-13.5 13-24.5 13-5.6 0-10.7-1.1-15.4-3.2-4.7-2.2-8.7-5.2-12-9.3-3.3-4-6-9-7.9-14.8-1.9-5.8-2.9-12.4-2.9-19.9 0-6.7.8-12.8 2.4-18.3 1.6-5.5 4-10.3 7.1-14.4 3.1-4.1 6.9-7.2 11.4-9.4s9.6-3.3 15.3-3.3c10.8 0 19.6 4.6 26.1 13.8V2.5h23v120.2h-22.4v.1zm-19.3-16.7c5.6 0 10.3-2.3 14-7 3.8-4.6 5.6-10.7 5.6-18.3 0-19.1-6.5-28.6-19.5-28.6-13.4 0-20 9.1-20 27.2 0 7.9 1.9 14.3 5.6 19.2 3.7 5.1 8.4 7.5 14.3 7.5zm51.5 16.7V42c3.5 1.7 7.5 2.7 11.6 2.7 4.2 0 8.1-1 11.6-2.7v80.8h-23.2zm33.1 0V2.5h22.9v43.7c6.6-9.2 15.3-13.8 26.1-13.8 5.7 0 10.8 1.1 15.3 3.3 4.5 2.2 8.3 5.3 11.4 9.4 3.1 4.1 5.4 8.8 7 14.4 1.6 5.6 2.4 11.7 2.4 18.3 0 7.4-1 14-2.9 19.9-1.9 5.8-4.5 10.8-7.9 14.8-3.3 4.1-7.4 7.2-12.1 9.3-4.7 2.2-9.8 3.2-15.3 3.2-11 0-19.1-4.3-24.5-13l-.2 10.7h-22.2v.1zm41.7-16.7c5.8 0 10.6-2.5 14.3-7.4 3.7-5 5.5-11.4 5.5-19.2 0-18.1-6.7-27.2-20-27.2-13 0-19.5 9.5-19.5 28.6 0 7.5 1.9 13.6 5.6 18.3 3.8 4.6 8.5 6.9 14.1 6.9zm51.2 16.7V2.5H477v120.2h-23.2v.1zm90.3-52.7c-.1-3.2-.7-6-1.7-8.5s-2.4-4.5-4-6.1c-1.7-1.6-3.6-2.8-5.7-3.6-2.1-.8-4.3-1.2-6.6-1.2-4.6 0-8.7 1.7-12.1 5.1-3.4 3.4-5.3 8.1-5.8 14.2h35.9z"/></svg> <span class="sr-only">credible</span> | |
</a> | |
</div> | |
<div class="col-xs hidden-lg-up"> | |
<button class="navbar-toggler pull-xs-right collapsed animated-bars" type="button" data-toggle="collapse" data-target="#main-menu" aria-controls="main-menu" aria-expanded="false" aria-label="Toggle navigation"> | |
<i></i> | |
</button> | |
</div> | |
<div class="col-xs-12 col-lg col-toggleable"> | |
<div class="collapse navbar-toggleable-md text-lg-right" id="main-menu"> | |
<form id="navbar-search" class="searchform form-inline" method="get" action="http://credible.dev/"> | |
<div id="navbar-search-query" class="form-group query"> | |
<label class="sr-only" for="s">Search this site</label> | |
<input type="text" class="form-control" id="s" name="s" placeholder="Search this site" value=""> | |
</div> | |
<button type="submit" class="hidden-lg-up btn btn-primary">Search</button> | |
<a id="toggle-search" class="hidden-md-down btn search-icon" href="#"><svg class="fa-svg fa-svg-search"><use xlink:href="#fa-svg-search"></use></svg></a> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</header> | |
<main class="main"> | |
<div class="container"> | |
<section class="featured"> | |
<div class="image" style="background-image: url( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment