-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
97 additions
and
97 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{% extends "frame.twig" %} | ||
{% block content %} | ||
{% autoescape true %} | ||
{% include "_Parts/Form.twig" %} | ||
{% endautoescape %} | ||
{% autoescape true %} | ||
{% include "_Parts/Form.twig" %} | ||
{% endautoescape %} | ||
{% endblock %} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{% autoescape true %} | ||
<br> | ||
<div class="text-center"> | ||
<ul class="pagination pagination-lg"> | ||
{% if page_num > 1 %} | ||
{% if (page_num-1) == 1 %} | ||
<li class="active"><a href="/" class="prev">«</a></li> | ||
{% else %} | ||
<li class="active"><a href="/page/{{page_num-1}}" class="prev">«</a></li> | ||
{% endif %} | ||
{% endif %} | ||
|
||
{% if page_num > 1 %} | ||
{% if (page_num-1) == 1 %} | ||
<a href="/" class="prev"><前</a> | ||
{% else %} | ||
<a href="/page/{{page_num-1}}" class="prev"><前</a> | ||
{% endif %} | ||
{% endif %} | ||
<li><span class="page-num">{{page_num}}</span></li> | ||
|
||
[<span class="page-num">{{page_num}}</span>p] | ||
|
||
{% if next_page_is_exist %} | ||
<a href="/page/{{page_num+1}}" class="next">次></a> | ||
{% endif %} | ||
|
||
<br> | ||
{% if next_page_is_exist %} | ||
<li class="active"><a href="/page/{{page_num+1}}" class="next">»</a></li> | ||
{% endif %} | ||
</ul> | ||
</div> | ||
{% endautoescape %} |
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,46 @@ | ||
{% autoescape true %} | ||
<html> | ||
<!DOCTYPE html> | ||
<html lang="ja"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Tinitter</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="/vendor/bootstrap/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/vendor/bootstrap/css/bootstrap-theme.min.css"> | ||
|
||
<link rel="stylesheet" href="/css/site.css"> | ||
</head> | ||
<body> | ||
{% block content %}{% endblock %} | ||
|
||
<header class="navbar navbar-inverse bs-docs-nav" role="banner"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<a href="/" class="navbar-brand">Tinitter</a> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<main id="content" role="main"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-3"></div> | ||
<div class="col-md-6"> | ||
{% block content %}{% endblock %} | ||
</div> | ||
<div class="col-md-3"></div> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
<footer> | ||
<div class="container"> | ||
<hr> | ||
<p class="text-center">Powered by PHP</p> | ||
</div> | ||
</footer> | ||
|
||
<script src="/vendor/jquery.js"></script> | ||
<script src="/vendor/bootstrap/js/bootstrap.min.js"></script> | ||
</body> | ||
</html> | ||
{% endautoescape %} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{% extends "frame.twig" %} | ||
{% block content %} | ||
{% autoescape true %} | ||
{% include "_Parts/Form.twig" %} | ||
{% endautoescape %} | ||
{% endblock %} |
This file contains 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
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{% autoescape true %} | ||
<br> | ||
|
||
{% if page_num > 1 %} | ||
{% if (page_num-1) == 1 %} | ||
<a href="/" class="prev"><前</a> | ||
{% else %} | ||
<a href="/page/{{page_num-1}}" class="prev"><前</a> | ||
{% endif %} | ||
{% endif %} | ||
|
||
[<span class="page-num">{{page_num}}</span>p] | ||
|
||
{% if next_page_is_exist %} | ||
<a href="/page/{{page_num+1}}" class="next">次></a> | ||
{% endif %} | ||
|
||
<br> | ||
{% endautoescape %} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% autoescape true %} | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Tinitter</title> | ||
</head> | ||
<body> | ||
{% block content %}{% endblock %} | ||
</body> | ||
</html> | ||
{% endautoescape %} |