Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 685 Bytes

File metadata and controls

19 lines (12 loc) · 685 Bytes

GiellaLT — Language games

The languages are grouped according to game.

{% assign games_repos = site.github.public_repositories|jsonify %}

Word guessing game

Simple word guessing game in the tradition of MasterMind. For more information on the source code, see this repo.

<script src="/assets/js/tablecommon.js"></script> <script src="/assets/js/gametable.js"></script> <script> const domWordGames = document.querySelector('#wordguess'); domWordGames.appendChild(addGameTable({{games_repos}}, 'wordguess-', ['game'])) </script>