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
| <form action="" method="get"> | |
| <input type="text" name="search" value="Поиск" onfocus="if(this.value=='Поиск')this.value=''" onblur="if(this.value=='')this.value='Поиск'" /> | |
| <input type="image" src="images/search-btn.jpg"/> | |
| </form> |
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 if ( has_post_thumbnail() ) : ?> | |
| <a class="popup" href="<?php | |
| $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large' ); | |
| echo $large_image_url[0]; | |
| ?>" title="<?php the_title_attribute(); ?>"> | |
| <?php the_post_thumbnail(array(400, 400)); ?> | |
| </a> | |
| <?php endif; ?> |
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 if ( have_posts() ) : query_posts('p=1'); | |
| while (have_posts()) : the_post(); ?> | |
| <?php the_title(); ?> | |
| <?php the_content(); ?> | |
| <?php the_post_thumbnail(array(100, 100)); ?> | |
| <? endwhile; endif; wp_reset_query(); ?> |
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
| <form class="form-inline"> | |
| <div class="row"> | |
| <div class="form-group col-sm-4 "> | |
| <input type="text" name="name" class="form-control" placeholder="Your full name"> | |
| </div><!--/.form-group col-sm-4--> | |
| <div class="form-group col-sm-4"> | |
| <input type="email" name="email" class="form-control" placeholder="Your email adres"> | |
| </div><!--/.form-group col-sm-4--> | |
| <div class="form-group col-sm-4"> | |
| <a href="contact.html" rel="#overlay"> |
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 | |
| remove_action('wp_head', 'rsd_link'); | |
| remove_action('wp_head', 'wlwmanifest_link'); | |
| remove_action('wp_head', 'wp_generator'); | |
| remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); | |
| remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); | |
| remove_action( 'wp_print_styles', 'print_emoji_styles' ); | |
| remove_action( 'admin_print_styles', 'print_emoji_styles' ); |
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
| function arphabet_widgets_init() { | |
| register_sidebar( array( | |
| 'name' => 'Home right sidebar', | |
| 'id' => 'home_right_1', | |
| 'before_widget' => '<div>', | |
| 'after_widget' => '</div>', | |
| 'before_title' => '<h2 class="rounded">', | |
| 'after_title' => '</h2>', | |
| ) ); |
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
| <div class="hidden"> | |
| <div class="portf_descr" id="work_1"> | |
| <div class="modal-box-content"> | |
| <button class="mfp-close" type="button" title="Close(Esc)">x</button> | |
| <h3> Заголовок работы</h3> | |
| <p>Описание работы: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia quasi reprehenderit saepe provident dolorem porro, alias culpa velit, recusandae quis. Quo reprehenderit esse sunt earum dolorum aspernatur eius distinctio facilis.</p> | |
| <img src="img/portfolio-images/1.jpg" alt="Alt"> | |
| </div> | |
| Css |
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
| <div class="mix col-md-3 portfolio_item category-1" > | |
| <img src="img/portfolio-images/1.jpg" alt="Alt"> | |
| <div class="port_item_cont"> | |
| <h3>Заголовок работы</h3> | |
| <p>Описание работы</p> | |
| <a> Посмотреть </a> | |
| </div> | |
| </div> | |
| Css |
NewerOlder