Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--- page by hailthehelpful. please don't use this as a base, redistribute...just don't steal it in general. use common sense. thanks!-->
- <!doctype html>
- <html>
- <head>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/2.2.2/isotope.pkgd.min.js"></script>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
- <link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
- <link href='https://fonts.googleapis.com/css?family=Roboto:100,400,300italic,300,400italic,700,700italic|Montserrat:400,700|Cabin:700' rel='stylesheet' type='text/css'>
- <script>
- $(document).ready(function() {
- var $container = $('.container').isotope({
- itemSelector: '.grid-item',
- masonry: {
- columnWidth: 360
- }
- });
- $('.name').click(function(){
- // change size of item by toggling gigante class
- $(this).closest('.grid-item').toggleClass('fullsize');
- $container.isotope('layout');
- });
- $('.name').click(function(){
- $(this).toggleClass('close');
- });
- });
- </script>
- <script type="text/javascript">
- $(document).ready( function() {
- // init Isotope
- var $grid = $('.grid').isotope({
- itemSelector: '.grid-item'
- });
- // store filter for each group
- var filters = {};
- $('.filters').on( 'click', '.button', function() {
- var $this = $(this);
- // get group key
- var $buttonGroup = $this.parents('.button-group');
- var filterGroup = $buttonGroup.attr('data-filter-group');
- // set filter for group
- filters[ filterGroup ] = $this.attr('data-filter');
- // combine filters
- var filterValue = concatValues( filters );
- // set filter for Isotope
- $grid.isotope({ filter: filterValue });
- });
- // change is-checked class on buttons
- $('.button-group').each( function( i, buttonGroup ) {
- var $buttonGroup = $( buttonGroup );
- $buttonGroup.on( 'click', 'button', function() {
- $buttonGroup.find('.is-checked').removeClass('is-checked');
- $( this ).addClass('is-checked');
- });
- });
- });
- // layout Isotope after each image loads
- $grid.imagesLoaded().progress( function() {
- $grid.isotope('layout');
- });
- // flatten object by concatting values
- function concatValues( obj ) {
- var value = '';
- for ( var prop in obj ) {
- value += obj[ prop ];
- }
- return value;
- }
- </script>
- <script>
- $(document).ready(function(){
- $(".showfilters").click(function(){
- $(".topfilters").toggle();
- });
- });
- </script>
- </head>
- <style>
- * {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- -webkit-backface-visibility: hidden;
- }
- ::-webkit-scrollbar {
- width: 6px;
- height: 0;
- background: #000;
- }
- ::-webkit-scrollbar-thumb {
- -webkit-border-radius: 12px;
- background-color: #fff;
- }
- .grid-item ::-webkit-scrollbar-thumb {
- border: none;
- -webkit-border-radius: 3px;
- background-color: #222 !important;
- }
- body,html {
- height: 100%;
- }
- body {
- background-color: #000;
- background-image: url(http://i.imgur.com/UyDBHed.png);
- background-attachment: fixed;
- background-size: cover;
- color: #fff;
- font-weight: 300;
- font-size: 12px;
- font-family: 'Roboto',sans-serif;
- }
- a {
- color: #73CEC9;
- text-decoration: none;
- }
- .container {
- margin: auto;
- margin-bottom: 50px;
- max-width: 1082px;
- height: 100%;
- }
- .container:after {
- display: block;
- clear: both;
- content: '';
- }
- .grid-item {
- position: relative;
- float: left;
- overflow: hidden;
- margin: 10px;
- width: 340px;
- height: 240px;
- background: #000;
- box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
- }
- .grid-item img {
- width: 100%;
- }
- .grid-item.fullsize {
- width: 700px;
- height: auto;
- }
- .grid-item.fullsize > .intro img {
- display: none;
- }
- .name,h1,h2,h3,#title {
- font-weight: 400;
- font-family: 'Montserrat',sans-serif;
- }
- .name {
- position: absolute;
- bottom: 0;
- z-index: 99999999;
- display: inline-block;
- overflow: hidden;
- padding: 6px 8px;
- width: 320px;
- outline: rgba(0,0,0,0.3) solid 1px;
- background: rgba(0,0,0,0.3);
- color: #fff;
- text-shadow: 0 0 1px rgba(0,0,0,.2);
- font-size: 14px;
- cursor: pointer;
- -webkit-transition: all .3s ease-in-out;
- -moz-transition: all .3s ease-in-out;
- -ms-transition: all .3s ease-in-out;
- -o-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- }
- .name:hover{
- padding-top: 185px;
- width: 320px;
- outline: #fff solid 1px;
- background: rgba(0,0,0,0.0);
- }
- .name:after {
- position: absolute;
- right: 0;
- bottom: 0;
- padding: 0 5px;
- content: "+";
- font-weight: 100;
- }
- .fullsize .name:after {
- content: "";
- }
- .expand {
- position: absolute;
- bottom: 10px;
- left: 10px;
- width: 100%;
- }
- .etc,#desc {
- font-weight: 300;
- font-size: 10px;
- font-family: 'Roboto',sans-serif;
- }
- .intro {
- position: absolute;
- top: 0;
- right: 0;
- width: 100%;
- }
- #nav,.links a,button {
- text-transform: uppercase;
- letter-spacing: 2px;
- font-weight: 300;
- font-size: 10px;
- font-family: 'Roboto',sans-serif;
- }
- #nav a:after {
- content: " |";
- }
- .links a:after {
- background: #000;
- color: #fff;
- }
- #nav a:last-of-type:after,.links a:last-of-type:after {
- content: "";
- }
- .links a {
- display: inline-block;
- margin-right: 2px;
- padding: 2px 0;
- border-bottom: 1px solid #222;
- color: #fff;
- -webkit-transition: all .3s ease-in-out;
- -moz-transition: all .3s ease-in-out;
- -ms-transition: all .3s ease-in-out;
- -o-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- }
- .links a:before {
- margin-right: 3px;
- content: "\f105";
- font-weight: 100;
- font-family: FontAwesome;
- }
- .links a:hover {
- background: #73CEC9;
- color: #000;
- }
- .linkgroup {
- display: inline-block;
- margin-bottom: 15px;
- width: 200px;
- vertical-align: top;
- }
- .fullsize .close {
- outline: none;
- }
- .close, .close:hover {
- position: absolute;
- top: 7px;
- right: 15px;
- display: block !important;
- overflow: hidden;
- margin: 0!important;
- padding: 0!important;
- width: 30px;
- height: 25px;
- border: none;
- outline: none;
- text-align: right;
- text-shadow: none;
- background: transparent;
- }
- .close:before {
- color: #fff;
- content: "\f404 ";
- font-size: 23px;
- font-family: IonIcons;
- }
- .header {
- margin: 20px;
- width: 660px;
- }
- .bio {
- overflow: auto;
- padding: 0 15px 20px 20px;
- padding-top: 0;
- max-height: 250px;
- width: 680px;
- text-align: justify;
- -webkit-mask-image: -webkit-gradient(linear,center 90%,center bottom,from(rgba(0,0,0,20)),to(rgba(20,0,0,0)));
- }
- .topbar {
- position: relative;
- overflow: auto;
- margin: 40px auto 10px;
- width: 1065px;
- height: 115px;
- background: #000;
- color: #fff;
- text-align: center;
- }
- #title {
- padding-top: 25px;
- text-transform: uppercase;
- font-size: 35px;
- }
- h1 {
- margin: 20px;
- padding: 10px;
- border: 1px solid #fff;
- text-align: left;
- font-size: 20px;
- }
- h2 {
- margin-bottom: 10px;
- padding: 10px 0;
- border-bottom: 1px solid #fff;
- font-size: 15px;
- }
- h2 span {
- font-weight: 100;
- font-size: 12px;
- font-family: 'Roboto',sans-serif;
- }
- h3 {
- display: inline-block;
- margin: 0;
- margin-right: 10px;
- padding: 0;
- padding-right: 10px;
- border-right: 1px solid #fff;
- font-size: 12px;
- }
- p {
- padding: 5px 0;
- }
- .box {
- position: relative;
- display: block;
- margin: 20px;
- padding: 20px;
- border: 1px solid #fff;
- }
- .feed {
- display: inline-block;
- overflow: auto;
- max-height: 400px;
- width: 340px;
- vertical-align: top;
- }
- .feed li {
- margin-right: 20px;
- padding: 15px 0;
- border-bottom: 1px solid #222;
- list-style: none;
- }
- .feed li:last-of-type {
- border-bottom: none;
- }
- .feed li i {
- color: #B0B0B0;
- font-style: normal;
- }
- .feed span {
- color: #73CEC9;
- }
- .twitterinfo {
- display: inline-block;
- margin-right: 35px;
- width: 235px;
- }
- .twitterinfo img {
- display: inline-block;
- width: 180px;
- height: 180px;
- border-radius: 5px;
- }
- .twitterinfo span,.twitterinfo b {
- display: block;
- }
- .twitterinfo b {
- font-size: 15px;
- }
- .what {
- display: none;
- }
- .what:before,.location:before,.joined:before,.born:before {
- display: inline-block;
- margin-right: 3px;
- width: 20px;
- text-align: center;
- font-size: 14px;
- font-family: "FontAwesome";
- }
- .what:before {
- content: '\f0ac';
- }
- .location:before {
- content: '\f041';
- }
- .joined:before {
- content: '\f017';
- }
- .born:before {
- content: '\f1fd';
- }
- .instagram {
- padding: 0;
- padding-top: 25px;
- border: none;
- text-align: justify;
- }
- .instagram:after {
- display: inline-block;
- width: 100%;
- content: '';
- }
- .instagram img {
- display: inline-block;
- margin: 7px 0;
- width: 210px;
- -webkit-filter: grayscale(100%);
- -webkit-transition: all .3s ease-in-out;
- -moz-transition: all .3s ease-in-out;
- -ms-transition: all .3s ease-in-out;
- -o-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- }
- .instagram:hover img {
- -webkit-filter: grayscale(0%);
- }
- .stats {
- list-style: none;
- }
- .topfilters {
- position: absolute;
- bottom: 0;
- z-index: 9999999;
- display: none;
- width: 100%;
- height: 100%;
- background: #000;
- -webkit-transition: all .3s ease-out;
- -moz-transition: all .3s ease-out;
- -ms-transition: all .3s ease-out;
- -o-transition: all .3s ease-out;
- transition: all .3s ease-out;
- }
- .filters {
- position: absolute;
- bottom: 0;
- padding: 15px;
- width: 1065px;
- }
- button {
- display: inline-block;
- margin-right: 4px;
- padding: 2px 0;
- outline: none;
- border: none;
- border-bottom: 1px solid #222;
- background: transparent;
- color: #b0b0b0;
- text-align: left;
- -webkit-transition: all .3s ease-out;
- -moz-transition: all .3s ease-out;
- -ms-transition: all .3s ease-out;
- -o-transition: all .3s ease-out;
- transition: all .3s ease-out;
- }
- .button:active,.button.is-checked {
- color: #73CEC9;
- }
- .button-group {
- display: inline-block;
- margin: 0 7px 7px 0;
- }
- iframe {
- display: none;
- }
- .tmblr-iframe.tmblr-iframe--desktop-loggedin-controls.iframe-controls--desktop {
- display: none;
- }
- </style>
- <body>
- <div class="topbar">
- <div id="title">insert title here</div>
- <div class="topfilters">
- <div class="filters">
- <!-- category one --->
- <div class="button-group" data-filter-group="division">
- <h3>DIVISION</h3>
- <button class="button is-checked" data-filter="">all</button>
- <button class="button" data-filter=".une">une</button>
- <button class="button" data-filter=".deux">deux</button>
- <button class="button" data-filter=".trois">trois</button>
- <button class="button" data-filter=".quatre">quatre</button>
- </div>
- <!-- category two --->
- <div class="button-group" data-filter-group="availability">
- <h3>AVALIABILITY</h3>
- <button class="button is-checked" data-filter="">all</button>
- <button class="button" data-filter=".open">open</button>
- <button class="button" data-filter=".taken">taken</button>
- </div>
- <!-- category three --->
- <div class="button-group" data-filter-group="type">
- <h3>CHARACTER TYPE</h3>
- <button class="button is-checked" data-filter="">all</button>
- <button class="button" data-filter=".cc">canon character </button>
- <button class="button" data-filter=".oc">original character</button>
- <button class="button" data-filter=".wanted">most wanted</button>
- </div>
- <p>
- <button><a href="#" class="showfilters">hide filters</a></button>
- </div>
- </div>
- <div id="nav">
- <a href="/">home</a>
- <a href="#" class="showfilters">show filters</a>
- <a href="https://hailthehelpful.tumblr.com">credit</a>
- </div>
- </div>
- <!-----------------------------BEGIN GRID----------------------------->
- <div class="grid container">
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- <!--------------------------BEGIN CHARACTER-------------------------->
- <div class="grid-item thing thing thing">
- <!--small/before click section-->
- <div class="intro">
- <img src="http://placehold.it/340x240"> <!--340x240 image-->
- <div class="expand">
- <div class="name">CHARACTER NAME
- <div class="etc">subtitle
- </div>
- </div>
- </div>
- </div>
- <!--expanded/after click section-->
- <div class="header">
- <img src="http://placehold.it/660x240"> <!--660x240 image-->
- </div>
- <h1>CHARACTER NAME</h1>
- <div class="bio">
- <p><b>Bold</b> <i>italic</i> <a href="#">link</a> nulla blue bottle craft beer, umami disrupt ramps ennui nesciunt delectus photo booth poutine chambray before they sold out. Viral placeat chillwave ramps. Church-key 8-bit fixie, thundercats next level trust fund whatever. 3 wolf moon put a bird on it hoodie aute. Venmo next level waistcoat placeat, dreamcatcher qui bespoke four dollar toast stumptown hammock. Thundercats irony farm-to-table tumblr, echo park hammock artisan chambray eu nostrud minim in heirloom. Heirloom put a bird on it aliquip, PBR&B green juice blog taxidermy.</p>
- <p>Selfies listicle exercitation fixie kogi, tofu vero dolore swag williamsburg aliqua nostrud waistcoat quinoa odio. Pour-over nesciunt authentic est everyday carry. Selfies art party ullamco, mlkshk stumptown sint YOLO typewriter craft beer cillum irony est microdosing. Plaid dolore ut biodiesel seitan, meh franzen quinoa mlkshk ugh selfies et 3 wolf moon yuccie cillum. Ea humblebrag plaid, twee taxidermy pour-over est fap chillwave austin reprehenderit freegan lomo wayfarers. Gastropub non semiotics laborum intelligentsia migas. Keffiyeh selvage tote bag cardigan mustache raw denim.</p>
- </div>
- <!---------------------------twitter section--------------------------->
- <div class="box">
- <div class="twitterinfo">
- <img src="http://placehold.it/180">
- <h2>name
- <span>@username</span></h2>
- <p>Meditation 8-bit et cornhole irony. Banjo fanny pack pickled duis. Farm-to-table delectus messenger bag, neutra everyday carry nisi. <a href="http://bit.ly/98K8eH">bit.ly/98K8eH</a></p>
- <ul class="stats">
- <li class="what">what</li>
- <li class="location">place</li>
- <li class="joined">Joined Month 20XX</li>
- <li class="born">Born on Month 00, 19XX</li>
- </ul>
- </div>
- <div class="feed">
- <!--- TIP: put <span> around words in the section below to change the color of the words. it makes a faux hashtag, link or @ -->
- <ul>
- <li><b>name</b> <i>@username</i><br>
- Lo-fi wayfarers magna elit, forage umami <span>@gastropub</span> sed cardigan tousled ugh helvetica post-ironic.</li>
- <li><b>name</b> <i>@username</i><br>
- Ut magna williamsburg, knausgaard pug truffaut sapiente gastropub ennui quis <span>#actually</span> small batch literally id gentrify.</li>
- <li><b>name</b> <i>@username</i><br>
- Chicharrones williamsburg venmo craft beer.</li>
- <li><b>name</b> <i>@username</i><br>
- Authentic franzen actually chillwave fashion axe godard.</li>
- <li><b>name</b> <i>@username</i><br>
- Drinking vinegar consectetur enim aliquip, fugiat et actually four loko. Beard enim whatever pug eiusmod, ea vegan.</li>
- </ul>
- </div>
- </div>
- <!--------------------------instagram section-------------------------->
- <div class="instagram box">
- <h2>@instaname <span>— some cool bio thing here</span></h2>
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- <img src="http://placehold.it/210">
- </div>
- <!-------------------------navigation section------------------------->
- <div class="links box">
- <div class="linkgroup">
- <h2>the first</h2>
- <a href="/">nerves</a>
- <a href="/">rawks</a>
- <a href="/">y.a.l.a</a>
- <a href="/">so fast, so maybe</a>
- </div>
- <div class="linkgroup">
- <h2>the second</h2>
- <a href="/">no duh</a>
- <a href="/">braveheart</a>
- <a href="/">heaven knows</a>
- <a href="/">hear the bells</a>
- </div>
- <div class="linkgroup">
- <h2>the third</h2>
- <a href="/">90s music</a>
- <a href="/">cynics & critics</a>
- <a href="/">enemy fire</a>
- <a href="/">u don't know</a>
- </div>
- </div>
- </div>
- <!---------------------------END CHARACTER--------------------------->
- </div><!--end container-->
- <!-- SCM Music Player http://scmplayer.net
- adding songs is pretty simple.
- 1) make sure you keep those '''' marks in there!
- 2) replace THE SONG TITLE with your song titles
- 3) replace THE SONG URL with your song urls.
- you can pull them straight from youtube -->
- <script type="text/javascript" src="http://scmplayer.net/script.js"
- data-config="{'skin':'http://static.tumblr.com/nezs2gh/lFOo4ewv8/musicplayer.css','volume':50,'autoplay':false,'shuffle':false,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'},
- {'title':'THE SONG TITLE','url':'THE SONG URL'}]}" ></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment