Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

link to github #21

Merged
merged 1 commit into from
Jul 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions resources/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"fr": "Application gratuite d'estimation agile",
"it": "App gratuita di stima agile"
},
"metaDescription":{
"es":"Scrum Poker Online, Estimación ágil, Planificación con cartas de póquer, Estimación de desarrollo ágil",
"en":"Scrum Poker Online, Agile Estimation, Planning with Poker Cards, Agile Development Estimation",
"ca":"Scrum Poker Online, Estimació àgil, Planificació amb cartes de pòquer, Estimació de desenvolupament àgil",
"de":"Scrum Poker Online, Agile Schätzung, Planung mit Pokerkarten, Agile Entwicklungsschätzung",
"fr":"Scrum Poker Online, Estimation Agile, Planification avec des cartes de poker, Estimation de développement Agile",
"it":"Scrum Poker Online, Stima Agile, Pianificazione con carte da poker, Stima Agile di sviluppo"
"metaDescription": {
"es": "Scrum Poker Online, Estimación ágil, Planificación con cartas de póquer, Estimación de desarrollo ágil",
"en": "Scrum Poker Online, Agile Estimation, Planning with Poker Cards, Agile Development Estimation",
"ca": "Scrum Poker Online, Estimació àgil, Planificació amb cartes de pòquer, Estimació de desenvolupament àgil",
"de": "Scrum Poker Online, Agile Schätzung, Planung mit Pokerkarten, Agile Entwicklungsschätzung",
"fr": "Scrum Poker Online, Estimation Agile, Planification avec des cartes de poker, Estimation de développement Agile",
"it": "Scrum Poker Online, Stima Agile, Pianificazione con carte da poker, Stima Agile di sviluppo"
},
"enterRoomName": {
"es": "Introduce el nombre de la sala",
Expand Down Expand Up @@ -70,5 +70,13 @@
"de": "Raumname",
"fr": "Nom de la salle",
"it": "Nome della stanza"
},
"github": {
"es": "Visita el proyecto en Github",
"en": "Visit the project on Github",
"ca": "Visita el projecte a Github",
"de": "Besuchen Sie das Projekt auf Github",
"fr": "Visitez le projet sur Github",
"it": "Visita il progetto su Github"
}
}
Binary file added static/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@
background-color: #45a049;
}

.github-link {
position: fixed;
bottom: 20px;
right: 20px;
}

@media screen and (max-width: 768px) {
.container {
max-width: 100%;
Expand All @@ -79,6 +85,11 @@ <h1>{{.I18n.title}}</h1>
<input type="text" placeholder="{{.I18n.enterRoomName}}" id="room-name">&nbsp;
<a href="#" id="create-room" class="btn">{{.I18n.createRoom}}</a>
</div>

<div class="text-center github-link">
<a href="https://github.com/aloon/go-scrum-poker" target="_blank" rel="noopener noreferrer"><img
src="/static/github.png" alt="{{.I18n.github}}" width="100"></a>
</div>
</div>
<script>
document.getElementById('create-room').addEventListener('click', createRoom);
Expand Down