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
| {% comment %} My comment goes here. {% endcomment %} |
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
| {% include share.html %} |
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 paginator.previous_page %} | |
| <a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a> | |
| {% else %} | |
| <span>« Prev</span> | |
| {% 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
| {% for post in paginator.posts %} | |
| <li> | |
| <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span> | |
| <h2 class="post-title"> | |
| <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> | |
| </h2> | |
| {{ post.excerpt | strip_html | strip_newlines }} | |
| </li> | |
| {% endfor %} |
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
| {{ post.excerpt | strip_html | strip_newlines | truncate: 160 }} |
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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
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
| <!-- In The Post Editor --> | |
| <form action="?" method="post" accept-charset="utf-8"> | |
| <label for="unique_name">Your Name:</label> | |
| <input type="text" name="unique_name" id="unique_name" value="" placeholder="Your Name"> | |
| <!-- Accepts .jpg files only with a max file size of 3mb --> | |
| [wp-multi-file-uploader allowed_mime_types="jpg" max_file_size="3"] | |
| <input type="submit" name="submit" value="Submit"> | |
| </form> | |
| <!-- END In The Post Editor --> |
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
| // Sets custom login logo fo WP-Login. | |
| function custom_login_logo() { | |
| echo '<style type="text/css"> | |
| h1 a { background-image:url('.get_bloginfo('template_url').'/images/logo.png) !important; } | |
| </style>'; | |
| } | |
| add_action('login_head', 'custom_login_logo'); |
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
| .hide-text { | |
| text-indent: 100%; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| } |
NewerOlder