mirror of
https://github.com/cupcakearmy/liquet.git
synced 2024-10-31 23:54:12 +01:00
reusable logos snippets
This commit is contained in:
parent
967d0ef870
commit
a290ab34e2
14
liquet/css/logos.css
Normal file
14
liquet/css/logos.css
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#logos {
|
||||||
|
margin: 1.5em 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logos img {
|
||||||
|
height: 2em;
|
||||||
|
width: 2em;
|
||||||
|
margin: 0 .5em;
|
||||||
|
transition: var(--animation);
|
||||||
|
}
|
||||||
|
|
||||||
|
#logos img:hover {
|
||||||
|
transform: scale(1.15);
|
||||||
|
}
|
@ -1,13 +1,10 @@
|
|||||||
<?php get_header();
|
<?php
|
||||||
|
include_once( 'logos.php' );
|
||||||
|
include_once( 'tags.php' );
|
||||||
|
|
||||||
|
get_header();
|
||||||
|
|
||||||
$tags = get_tags( [ 'orderby' => 'count', 'order' => 'desc' ] );
|
$tags = get_tags( [ 'orderby' => 'count', 'order' => 'desc' ] );
|
||||||
//$tags = array_map(function ($tag) {
|
|
||||||
// return [
|
|
||||||
// 'name' => $tag->name,
|
|
||||||
// 'slug' => $tag->slug,
|
|
||||||
// 'count' => $tag->count,
|
|
||||||
// ];
|
|
||||||
//}, $tags)
|
|
||||||
?>
|
?>
|
||||||
<div id="home">
|
<div id="home">
|
||||||
<div class="flex container vertical middle" id="list-header">
|
<div class="flex container vertical middle" id="list-header">
|
||||||
@ -16,19 +13,12 @@ $tags = get_tags(['orderby' => 'count', 'order' => 'desc']);
|
|||||||
<h1><?= get_bloginfo( 'name' ); ?></h1>
|
<h1><?= get_bloginfo( 'name' ); ?></h1>
|
||||||
<h3><?= get_bloginfo( 'description' ); ?></h3>
|
<h3><?= get_bloginfo( 'description' ); ?></h3>
|
||||||
</a>
|
</a>
|
||||||
|
<?php render_links(); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex container horizontal center" id="list-container">
|
<div class="flex container horizontal center" id="list-container">
|
||||||
<div id="list">
|
<div id="list">
|
||||||
<?php if ($tags) { ?>
|
<?php render_all_tags(); ?>
|
||||||
<!-- <div class="flex container horizontal center" id="list-container">-->
|
|
||||||
<div class="tags">
|
|
||||||
<?php foreach ($tags as $tag) { ?>
|
|
||||||
<a class="tag" href="<?= get_tag_link($tag->term_id); ?>"><?= $tag->name; ?> <b><?= $tag->count ?></b></a>
|
|
||||||
<?php } ?>
|
|
||||||
</div>
|
|
||||||
<!-- </div>-->
|
|
||||||
<?php } ?>
|
|
||||||
<br/><br/><br/>
|
<br/><br/><br/>
|
||||||
<?php
|
<?php
|
||||||
while ( have_posts() ) {
|
while ( have_posts() ) {
|
||||||
|
19
liquet/logos.php
Normal file
19
liquet/logos.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$links = [ 'medium', 'github', 'twitter', 'website' ];
|
||||||
|
|
||||||
|
function render_links() {
|
||||||
|
global $links;
|
||||||
|
?>
|
||||||
|
<div class="flex container horizontal middle center" id="logos"><?php
|
||||||
|
foreach ( $links as $link ) {
|
||||||
|
$saved = get_option( $link . '_url' );
|
||||||
|
if ( $saved ) { ?>
|
||||||
|
<a href="<?= $saved ?>" target="_blank">
|
||||||
|
<img src="<?= get_template_directory_uri() . '/vendor/logos/' . $link . '.png' ?>"
|
||||||
|
alt="<?= $link; ?>"/>
|
||||||
|
</a>
|
||||||
|
<?php }
|
||||||
|
}
|
||||||
|
?></div><?php
|
||||||
|
}
|
@ -1,10 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
include_once( 'loop-utils.php' );
|
||||||
|
include_once( 'logos.php' );
|
||||||
|
include_once( 'tags.php' );
|
||||||
|
|
||||||
get_header();
|
get_header();
|
||||||
the_post();
|
the_post();
|
||||||
|
|
||||||
include_once( 'loop-utils.php' );
|
|
||||||
|
|
||||||
$dates = getDates();
|
$dates = getDates();
|
||||||
|
|
||||||
?>
|
?>
|
||||||
@ -43,7 +45,9 @@ $dates = getDates();
|
|||||||
<br><br>
|
<br><br>
|
||||||
<?php the_content(); ?>
|
<?php the_content(); ?>
|
||||||
<br>
|
<br>
|
||||||
<?php get_template_part( 'tags-list', get_post_format() ); ?>
|
<?php render_current_tags(); ?>
|
||||||
|
<hr>
|
||||||
|
<?php render_links(); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user