Skip to content

Commit a89fc24

Browse files
authored
Just make sure the homepage is a bit more nice (#100)
1 parent 7ee035c commit a89fc24

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

templates/base.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<html>
33
<head>
44
<meta charset="UTF-8">
5-
<title>{% block title %}Welcome!{% endblock %}</title>
6-
{% block stylesheets %}{% endblock %}
5+
<title>{% block title %}Carsonbot{% endblock %}</title>
6+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
77
</head>
88
<body>
99
{% block body %}{% endblock %}

templates/default/homepage.html.twig

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{% extends 'base.html.twig' %}
22

33
{% block body %}
4-
<div class="container">
5-
<div class="row">
6-
<div class="col-xs-6 col-xs-offset-3">
7-
<div class="text-center page-header">
8-
<div>
9-
<img src="https://pbs.twimg.com/media/B6dVMHzCYAASEhm.jpg" />
4+
<main role="main" class="container mt-5">
5+
<div class="row justify-content-center">
6+
<div class="col-12 col-md-8 col-xl-7">
7+
<div class="page-header">
8+
<div class="my-4">
9+
<img style="width: 100%" src="https://pbs.twimg.com/media/B6dVMHzCYAASEhm.jpg" />
1010
</div>
1111

12-
<h1>Carson: The Issue Butler</h1>
12+
<h1 class="mt-5 text-center">Carson: The Issue Butler</h1>
1313

14-
<table class="table">
14+
<table class="table mt-3">
1515
<thead>
1616
<tr>
1717
<th>Repository</th>
@@ -23,15 +23,15 @@
2323
<tr>
2424
<td>{{ repository.vendor }}/{{ repository.name }}</td>
2525
<td>
26-
<a href="{{ repository.needsReviewUrl }}" class="btn btn-xs btn-default">Needs Review Issues</a>
26+
<a href="{{ repository.needsReviewUrl }}" class="btn btn-sm btn-link">Needs Review Issues</a>
2727
</td>
2828
</tr>
2929
{% endfor %}
3030
</tbody>
3131
</table>
3232
</div>
33-
<footer style="margin: 20px; text-align: center;">Deployed proudly on <a href="https://symfony.com/cloud/">SymfonyCloud</a></footer>
33+
<footer class="mt-5 text-center">Deployed proudly on <a href="https://symfony.com/cloud/">SymfonyCloud</a></footer>
3434
</div>
3535
</div>
36-
</div>
36+
</main>
3737
{% endblock %}

0 commit comments

Comments
 (0)