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
SDKMAN! (The Software Development Kit Manager) | |
Atom | |
https://robomongo.org | |
Termius |
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
<?php | |
global $post; | |
$page_for_posts_id = get_option( 'page_for_posts' ); | |
if ( $page_for_posts_id ) : | |
$post = get_page( $page_for_posts_id ); | |
setup_postdata( $post ); | |
?> | |
<div id="post-<?php the_ID(); ?>"> | |
<header> | |
<h1><?php the_title(); ?></h1> |
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
position: relative; | |
margin-top: 50%; | |
transform: translateY(-50%); | |
/* Mixin --> not tested */ | |
@mixin vertical-align($position: relative) { | |
position: $position; | |
top: 50%; | |
-webkit-transform: translateY(-50%); |
NewerOlder