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
if ( ! function_exists( 'generate_posted_on' ) ) : | |
/** | |
* Prints HTML with meta information for the current post-date/time and author. | |
*/ | |
function generate_posted_on() | |
{ | |
$date = apply_filters( 'generate_post_date', true ); | |
$author = apply_filters( 'generate_post_author', true ); | |
//if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) | |
$time_string .= '<time class="updated" datetime="%3$s" itemprop="dateModified">%4$s</time>'; |
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
/* =============================== | |
SITE HEADER | |
=============================== */ | |
/* hide topbar on mobile */ | |
@media (max-width: 768px) { | |
.top-bar { | |
display: none; | |
} | |
} |
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
<RelativeLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:padding="16dp"> | |
<TextView | |
android:text="I’m in this corner" | |
android:layout_height="wrap_content" | |
android:layout_width="wrap_content" |