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 inc/core/_config | |
| extends inc/core/_base | |
| block title | |
| - var title = '' | |
| title= title | |
| block prepend meta | |
| - var sitename = name | |
| - var keywords = page.top.keywords | |
| - var description = page.top.description | |
| - var ogpimage = page.top.ogpimage |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| a img:hover { | |
| opacity: 0.6; | |
| filter: alpha(opacity=60); | |
| -ms-filter: "alpha(opacity=60)"; | |
| -khtml-opacity: 0.6; | |
| -moz-opacity: 0.6; | |
| } |
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
| #################### 追加 #################### | |
| #!/usr/bin/env bash | |
| # Check that terminfo exists before changing TERM var to xterm-256color | |
| # Prevents prompt flashing in Mac OS X 10.6 Terminal.app | |
| if [ -e /usr/share/terminfo/x/xterm-256color ]; then | |
| export TERM='xterm-256color' | |
| fi |
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 | |
| /* | |
| Template Name: 横幅フルサイズ | |
| */ |
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="post-nav"> | |
| <ul> | |
| <?php if(get_adjacent_post(true, '', true)): ?> | |
| <li class="previous_post"> | |
| <?php previous_post_link( '%link', '%title<span>%date</span>', TRUE); ?> | |
| </li> | |
| <?php endif; ?> | |
| <?php if(get_adjacent_post(true, '', false)): ?> | |
| <li class="next_post"> | |
| <?php next_post_link( '%link', '%title<span>%date</span>', TRUE); ?> |

