<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package WordPress * @subpackage Twenty_Nineteen * @since Twenty Nineteen 1.0 */ ?><!doctype html> <html <?php language_attributes(); ?>> <head> <?php include_once("classes/WordpressPage.inc.php"); $p = new WordpressPage(); $p->outputGoogleAnalytics(); $p->outputIncludes(); ?> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="https://gmpg.org/xfn/11" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php $p->outputSiteNav(); ?> <?php wp_body_open(); ?> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentynineteen' ); ?></a> <header id="masthead" class="<?php echo is_singular() && twentynineteen_can_show_post_thumbnail() ? 'site-header featured-image' : 'site-header'; ?>"> <?php /* * removed this 2024.08.90 * to clean up top of page design * */ ?> <!-- <div class="site-branding-container"> <?php //get_template_part( 'template-parts/header/site', 'branding' ); ?> </div>--> <?php if ( is_singular() && twentynineteen_can_show_post_thumbnail() ) : ?> <div class="site-featured-image"> <?php twentynineteen_post_thumbnail(); the_post(); $discussion = ! is_page() && twentynineteen_can_show_post_thumbnail() ? twentynineteen_get_discussion_data() : null; $classes = 'entry-header'; if ( ! empty( $discussion ) && absint( $discussion->responses ) > 0 ) { $classes = 'entry-header has-discussion'; } ?> <div class="<?php echo $classes; ?>"> <?php get_template_part( 'template-parts/header/entry', 'header' ); ?> </div><!-- .entry-header --> <?php rewind_posts(); ?> </div> <?php endif; ?> </header><!-- #masthead --> <div id="content" class="site-content">

We had the opportunity to create some silkscreen posters for Teklife & Ashes57 at the beginning of the summer. Fresh out of quarantine, we were eager to get back to creating posters and the artwork we received for these had us really excited to get back on press!

We were completely sidelined when COVID hit, like many other businesses across the country. Massachusetts had it really bad in the beginning but we followed the recommendations and hunkered down. Just about all of our projects vaporized in March and April so when we started getting pricing requests again it was a blessing.

I had seen Ashes57’s artwork back in the late 2000s on a cover for an album Wu-Tang did called Enter the Dubstep. It’s strange how some pieces of art stick with you. The detail in her artwork is pretty incredible and on top of that it’s really suited for screen printing. It’s always a shame when some spends all the time to create something and finds out it isn’t printable.

While creating these silkscreen posters, we turned on the old digital camera and created this little process / hype video. This video was made during the first of two different posters we created during the summer of 2020. This piece is titled “Bowery 2020” and can be purchased either at ashes57art.com or teklifestore.

If you’re looking for help creating silkscreen posters, feel free to reach out to us.

<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package WordPress * @subpackage Twenty_Nineteen * @since Twenty Nineteen 1.0 */ ?> </div><!-- #content --> <footer id="colophon" class="site-footer"> <?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?> <div class="site-info"> <!-- <?php $blog_info = get_bloginfo( 'name' ); ?> <?php if ( ! empty( $blog_info ) ) : ?> <a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>, <?php endif; ?> <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentynineteen' ) ); ?>" class="imprint"> <?php /* translators: %s: WordPress. */ printf( __( 'Proudly powered by %s.', 'twentynineteen' ), 'WordPress' ); ?> </a> --> <?php if ( function_exists( 'the_privacy_policy_link' ) ) { the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); } ?> <?php if ( has_nav_menu( 'footer' ) ) : ?> <nav class="footer-navigation" aria-label="<?php esc_attr_e( 'Footer Menu', 'twentynineteen' ); ?>"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_class' => 'footer-menu', 'depth' => 1, ) ); ?> </nav><!-- .footer-navigation --> <?php endif; ?> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> <?php $p = new WordpressPage(); $p->outputSiteFooter(); ?> </body> </html>