Skip to content

Commit

Permalink
Merge pull request #21 from aloon/github
Browse files Browse the repository at this point in the history
link to github
  • Loading branch information
aloon authored Jul 30, 2023
2 parents 6eee2a7 + 64bf117 commit 2470d12
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
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

0 comments on commit 2470d12

Please sign in to comment.