diff --git a/assets/fonts/ChessSansUsual.woff b/assets/fonts/ChessSansUsual.woff new file mode 100644 index 0000000..8b8ec08 Binary files /dev/null and b/assets/fonts/ChessSansUsual.woff differ diff --git a/assets/fonts/LiberationSans-Regular.woff b/assets/fonts/LiberationSans-Regular.woff new file mode 100644 index 0000000..c2a78ee Binary files /dev/null and b/assets/fonts/LiberationSans-Regular.woff differ diff --git a/assets/fonts/pgn4web-font-ChessSansUsual.css b/assets/fonts/pgn4web-font-ChessSansUsual.css new file mode 100644 index 0000000..70d7868 --- /dev/null +++ b/assets/fonts/pgn4web-font-ChessSansUsual.css @@ -0,0 +1,21 @@ +/* + * pgn4web javascript chessboard + * copyright (C) 2009-2012 Paolo Casaschi + * see README file and http://pgn4web.casaschi.net + * for credits, license and more details + * + * + * allows using the following chess figurine font-family setting for the chess moves: + * + * 'pgn4web ChessSansUsual' + * + * make sure you include this CSS file into your HTML file or your CSS file, then set + * the font-family for the .move class to the chess font of your choice. + */ + +@font-face { + font-family: 'pgn4web ChessSansUsual'; + src: url('ChessSansUsual.eot'); + src: url('ChessSansUsual.eot?#iefix') format('embedded-opentype'), url('ChessSansUsual.woff') format('woff'), url('ChessSansUsual.ttf') format('truetype'), url('ChessSansUsual.svg#ChessSansUsual') format('svg'); +} + diff --git a/assets/fonts/pgn4web-font-LiberationSans.css b/assets/fonts/pgn4web-font-LiberationSans.css new file mode 100644 index 0000000..0e2048a --- /dev/null +++ b/assets/fonts/pgn4web-font-LiberationSans.css @@ -0,0 +1,26 @@ +/* + * pgn4web javascript chessboard + * copyright (C) 2009-2012 Paolo Casaschi + * see README file and http://pgn4web.casaschi.net + * for credits, license and more details + * + * + * The standard LiberationSans font is supplied to allow for consistent display of + * header and text with the moves, when chess moves are displayed using a supplied + * figurine font. + */ + +@font-face { + font-family: 'pgn4web Liberation Sans'; + src: url('LiberationSans-Regular.eot'); + src: url('LiberationSans-Regular.eot?#iefix') format('embedded-opentype'), url('LiberationSans-Regular.woff') format('woff'), url('LiberationSans-Regular.ttf') format('truetype'), url('LiberationSans-Regular.svg#LiberationSans') format('svg'); + font-weight: normal; +} + +@font-face { + font-family: 'pgn4web Liberation Sans'; + src: url('LiberationSans-Bold.eot'); + src: url('LiberationSans-Bold.eot?#iefix') format('embedded-opentype'), url('LiberationSans-Bold.woff') format('woff'), url('LiberationSans-Bold.ttf') format('truetype'), url('LiberationSans-Bold.svg#LiberationSans-Bold') format('svg'); + font-weight: bold; +} + diff --git a/assets/pgnviewer/README.txt b/assets/pgnviewer/README.txt new file mode 100644 index 0000000..5e9feed --- /dev/null +++ b/assets/pgnviewer/README.txt @@ -0,0 +1,547 @@ +# +# pgn4web javascript chessboard +# copyright (C) 2009-2025 Paolo Casaschi +# see README file and http://pgn4web.casaschi.net +# for credits, license and more details +# + + +PGN4WEB: javascript chess games viewer for websites, blogs and live broadcasts. + + +ABOUT + +pgn4web is a software package providing a chess games viewer for websites and +blogs, including live games broadcast support; pgn4web also provides a variety +of online web services, including a chess viewer and a board generator tool for +adding chess games to websites and blogs without any coding; pgn4web integrates +with several popular web platforms and services. + +*** +*** THIS README FILE IS A SUMMARY OF THE PGN4WEB DOCUMENTATION +*** MORE EXTENSIVE AND UPDATED DOCUMENTATION IS AVAILABLE +*** FROM THE PGN4WEB SUPPORT WIKI REACHABLE FROM http://pgn4web.casaschi.net +*** PLEASE RELY ON THE SUPPORT WIKI RATHER THAN THIS README ONLY +*** + +Project homepage: http://pgn4web.casaschi.net (including downloads and wiki) +Contact email: pgn4web@casaschi.net + +Features: +- display chess games form PGN files on websites and blogs +- supports live broadcasts of chess games with automatic refresh of remote PGNs +- interactive browsing of game variations and comments +- shortcut keys for navigating through the game, for selecting games and much + more; uses chessboard squares as input buttons; on supported touchscreen + devices uses touch gestures across the chessboard +- fully customizable display: each item (board, button bar, game selection + menu, PGN header info, game text, game comment and more) can be displayed + (or hidden) at pleasure in your html file +- supports different bitmaps for chess pieces (even custom bitmaps) and + different chessboard sizes +- uses figurine fonts for chess moves and chess informant style symbols for + comments and annotations +- provides a chess viewer web service, see http://pgn4web.casaschi.net/viewer/ +- provides a board generator web service for adding chess games to websites and + blogs without any coding, see http://pgn4web-board-generator.casaschi.net +- integrates with popular web platforms and services such as blogger, drupal, + joomla, mediawiki, phpBB, wordpress.org and many others. +- supports puzzles presentation modes +- integrates with HTML5 video +- supports Chess960 (a.k.a. Fischer random chess) games + +Limitations: +- only one chessboard for html file (use frames if you need to display + more in the same view) + +Bugs: +- no major issue at the moment of writing, please check the project + issues tracker at http://pgn4web-project.casaschi.net/tickets/ + +User feedback: +Please email the pgn4web project (pgn4web@casaschi.net) your feedback, +suggestions and bug reports. Please send for review any PGN file that +pgn4web fails parsing correctly. + +Enjoy! + + +DEBUGGING + +Errors alert messages are logged by pgn4web, such as failure to load PGN +data, incorrect PGN games or incorrect FEN strings. +When an error is encountered, the top left chessboard square will flash +to signal the exception. +The error alert log can be reviewed clicking on the same top left +chessboard square. + + +HOW TO USE pgn4we.js + +To enable pgn4web, add a SCRIPT instance at the top of your HTML file: + + + +The PGN input can be specified either as URL within another SCRIPT instance +with at least the call to + + SetPgnUrl("http://yoursite/yourpath/yourfile.pgn") + +and optionally any of the other calls listed below. + +Or the PGN file can be pasted in the body of the HTML file +within a hidden FORM/TEXTAREA statement with the ID pgnText: + + +
+ + +Example: + + + +Then the script will automagically add content into your HTML file +to any
or containers with the following IDs: + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +The file template.css shows a list of customization style options. +For better chessboard display, it is recommended to explicitly enforce +chessboard and square size using the ".boardTable", ".whiteSquare" and +".blackSquare" CSS classes, such as: + /* account for chessboard and squares border here, if any */ + .boardTable { width:326px; height:326px; border-width:3px; } + .whiteSquare, .blackSquare { width:40px; height:40px; } + +See template.html file for an example. +See *mini.html* for an example of embedding the PGN content into the HTML file. +See http://pgn4web.casaschi.net/demo/ usage example, including a live broadcast +demo. +See http://pgn4web-blog.casaschi for a usage example within a blog using the +iframe html tag. + +The pgn4web scripts and pages are optimized for the HTML5 doctype declaration: + + + +CHESS FIGURINE DISPLAY OF MOVES + +pgn4web allows displaying chess moves text using the supplied figurine fonts: +'pgn4web ChessSansAlpha', 'pgn4web ChessSansMerida', 'pgn4web ChessSansPiratf', +'pgn4web ChessSansUscf' and 'pgn4web ChessSansUsual'. These fonts are based on +the Liberation Sans font, see credits section for more details, that is provided +as well for overall consistent display of moves, text and headers. + +To enable figurine display of chess moves text, make sure you include the +corresponding fonts/pgn4web-font-ChessSansPiratf.css file toghether with the +font/pgn4web-font-LiberationSans.css file into your HTML file: + + + + +or into your CSS file: + + @import url("fonts/pgn4web-font-LiberationSans.css"); + @import url("fonts/pgn4web-font-ChessSansPiratf.css"); + +Then set the font-family for the .move, .variation and .commentMove classes to +the chess font of your choice and the rest of the page to the Liberation Sans +font. For example in your CSS file: + + body { + font-family: 'pgn4web Liberation Sans', sans-serif; + } + .move, .variation, .commentMove { + font-family: 'pgn4web ChessSansPiratf', 'pgn4web Liberation Sans', sans-serif; + } + +When using chess figurine fonts it's strongly recommended to activate the +"smooth fonts display" feature of the client operating system (active by +default on most current systems). + +See the template.html and template.css files for an example. + + +CHESS INFORMANT SYMBOLS + +pgn4web allows for showing chess informant style symbols when the corresponding +PGN NAGs (Numeric Annotation Glyphs) are found in the PGN comments. This feature +is disabled by default; in order to enable it in your HTML page, please include +the script below immediately after the main pgn4web script: + + + + +Please note, differently than when using the figurine fonts, if the user's web +browser does not support web fonts, there's not elegant textual fallback. + +See the chess-informant-template.html and the collection-example.thml (chess +informant sample) files for an example. + + +THE BOARD GENERATOR WEB TOOL + +The board widget allows showing games and positions in web pages and blogs, +without any html coding for each game, where the chessboard widget is created +using a given HTML code within the web page or blog. + +Just go to the board widget generator site on + http://pgn4web-board-generator.casaschi.net +then enter your PGN games and configure the options. The tool will +automatically generate some HTML code that you can cut and paste in your web +page or your blog. + + +THE LIVE BROADCAST OF GAMES + +By setting SetLiveBroadcast(delay, alertFlag, demoFlag, stepFlag, endlessFlag) +in the HTML file, pgn4web will periodically refresh the PGN file, showing the +live progress of the games. PGN files produced by the DGT chessboards are +supported. + +SetLiveBroadcast(delay, alertFlag, demoFlag, stepFlag, endlessFlag) parameters: + - delay = refresh interval in minutes, decimals allowed (default 1) + - alertFlag = if set true, shows alert debug messages (default false) + - demoFlag = if set true, sets live demo mode (default false) + - stepFlag = if set true, autoplays updates in steps (default false) + - endlessFlag = if set true, keeps polling for new moves even atfer all games + are finished (default false) + +If you set stepFlag, please note that the autoplay delay is set by +SetAutoplayDelay(delay), where no more than 2000ms should be used for live +broadcasts. + +By default, polling for new moves stops once all games are finished; a game is +deemed finished when the Result header tag is different from "*"); when +endlessFlag is set, the polling for new moves continues endlessly. + +The bash shell script live-grab.sh, executed on your server allows for grabbing +the updated game source from anywhere on the Internet to your server. + +Clock information as provided by the DGT chessboards in PGN move comments, such +as {[%clk 1:59:59]}, and in the PGN header, such as [WhiteClock "2:00:00"], +[BlackClock "2:00:00"] and [Clock "W/1:59:59"] is displayed in the following +sections: + +
+
+ +The status of the live broadcast is displayed in the following sections: + +
+
+
+
+ +Clicking on the H6 square will force a games refresh. +Clicking on the A6/B6 squares will pause/restart the automatic games refresh. + +The file live-template.html shows a very basic example. + +A demo facility is available to test the live broadcast functionality. +If the demo flag is set in SetLiveBroadcast() and a set of full games is +provided, the tool will simulate a slow progress of the game. Set the +proper flag in live-template.html for an example. Please note, even during +a demo, the PGN file is actually refreshed from the server for a more +accurate testing. +Alternatively, for a more realistic simulation, the bash shell script +live-simulation.sh slowly updates the live.pgn file, simulating a real event. + +To setup a live broadcast please use any of the live*.html files. +The live*.html files typically accept these parameters: + - pgnData = PGN file to load (default live.pgn) + - refreshMinutes = refresh interval in minutes, decimals allowed (default 1) + - refreshDemo = if set true, sets live demo mode + - help = if set true, shows additional help information + +For instance, make sure that the file myGames.pgn on your server is periodically +refreshed with the live games, then add the following iframe to your page: + + +Each live*.html file is customized to a different purpose and provides +specific configuration parameters. + +http://pgn4web-live.casaschi.net will occasionally broadcast live major chess +events. + + +CUSTOMIZATION FUNCTIONS + +The following functions, if defined in the HTML file after loading pgn4web.js, +allow for execution of custom commands at given points: +- customFunctionOnPgnTextLoad(): when loading a new PGN file +- customFunctionOnPgnGameLoad(): when loading a new game +- customFunctionOnMove(): when a move is made +- customFunctionOnAlert(message_string): when an error alert is raised +- customFunctionOnCheckLiveBroadcastStatus(): when a live broadcast is checked +Please note the order these functions are executed; for example, when loading +a new PGN file at the end of the first game, first customFunctionOnMove() is +executed, then (when the game has been loaded and the move positioning +completed) customFunctionOnPgnGameLoad() is executed and finally (when the +selected game is fully loaded) customFunctionOnPgnTextLoad() is executed. + +The function customPgnHeaderTag(customTagString, htmlElementIdString, gameNumber) +is available for use in customFunctionOnPgnGameLoad() to parse custom PGN header +tags and automatically assign their value to the given HTML elements. The function +returns the custom tag value and the `gameNumber` parameter, if unassigned, +defaults to the current game. +The function customPgnCommentTag(customTagString, htmlElementIdString, plyNumber) +is available for use in customFunctionOnMove() to parse custom PGN comment tags +like { [%pgn4web info] } and automatically assign their value to the given HTML +elements. The function returns the custom tag value and the `plyNumber` parameter, +if unassigned, defaults to the current ply. + +See twic944.html or live.html for examples. + +The following functions, if defined in the HTML file after loading pgn4web.js, +allow for execution of custom commands when shift + a number key is pressed: +- customShortcutKey_Shift_0() +- customShortcutKey_Shift_1() +... +- customShortcutKey_Shift_9() + + +SHORTCUT KEYS AND TEXT FORMS + +When the HTML page contains the following script command + + SetShortcutKeysEnabled(true); + +then all keystrokes for that active page are captured and processed by pgn4web; +this allows for instance to browse the game using the arrow keys. If no other +precautions are taken, this has also the undesirable side effect of capturing +keystrokes intended by the user for typing in text forms when present in the +same page: this makes the text forms unusable. + +In order to have fully functional text forms in pgn4web pages, the following +"onFocus" and "onBlur" actions should be added to the textarea forms: + + + +See the inputform.html HTML file for an example. + + +TECHNICAL NOTES ABOUT WEB BROWSERS + +pgn4web is developed and tested with recent versions of a variety of +browsers (Arora, Blackberry browser, Chrome, Epiphany, Firefox, Internet +Explorer, Opera, Safari) on a variety of personal computer platforms +(Linux/Debian, MacOS, Windows) and some smartphone/pda platform (Android, +Blackberry, Apple iOS for iPhone/iPad/iPod). +Not every browser version (please upgrade to a recent release) has been +tested and not every combination of browser/platform has been validated. +If you have any issue with using pgn4web on your platform, please email +pgn4web@casaschi.net + +Note about Google Chrome: you might experience problems when testing HTML +pages from your local computer while developing your site. This is a +security limitation of the browser with respect to loading local files. +The limitation can be bypassed by starting Google Chrome with the command +line switch '--allow-file-access-from-files'. Browsing pgn4web websites +with Google Chrome should work properly. + +Note about Internet Explorer v7 and above: under some circumstances you might +experience problems when testing HTML pages from your local computer while +developing your site. If this happens to you, read notes at +http://pgn4web-project.casaschi.net/tickets/23/ + + +PGN STANDARD SUPPORT + +pgn4web mostly supports the PGN standard for chess games notation (see +https://www.tim-mann.org/Standard). + +The general design principle is for pgn4web to try as much as possible +to automatically recover from minor errors in the PGN data and only stop +the game replay after unrecoverable errors. + +Notable exceptions and limitations with respect to the PGN standard: + +- only pieces initials in the English language are supported, the use of +alternative languages as specified by the PGN standard is not supported +(pgn4web can however display chess moves text using figurine notation, so +the language issue should not be much of a problem, just make sure your +chess software produces PGN data with English pieces initials). + +pgn4web also follows a set of proposed extensions to the PGN standard +(see https://www.enpassant.dk/chess/palview/enhancedpgn.htm), more +specifically: + +- understands the [%clk 1:59:58] tag in the PGN comment section as the + clock time after each move +- understands the PGN tags [WhiteClock "2:00:00"] and + [BlackClock "2:00:00"] as the clock times at the beginning of the game +- understands the PGN tag [Clock "W/1:59:59"] as the clock time of the + running clock +- allows parsing of generic comment tags using the function + customPgnCommentTag() + +pgn4web also supports null moves in the "--" notation (used by a number of +chess softwares like scid and chessbase), such as in 1. e4 -- 2. d4, and +supports continuations (defined as variations where the last move played +before the variation is not taken back prior to the start of the variation +moves) in the "(*" notation, such as in 1. e4 (* 1... d5 2. exd5) e5 + +Special characters, such as symbols and accented letters, can appear in PGN +files as comments or as part of the header values; in order for pgn4web to +display those characters correctly, the PGN file should be saved in unicode +UTF-8 format. +If you are forced to use PGN files encoded in a different format, you might +try patching manually the pgn4web.js, search for "// patch: pgn encoding" and +follow instructions. + +Please email me for review any PGN file that pgn4web fails parsing correctly. + + +CHESS960 SUPPORT + +pgn4web supports Chess960 (a.k.a. Fischer random chess) and understands both +the X-FEN and the Shredder-FEN extensions to the FEN notation. + + +JAVASCRIPT CODING + +As of pgn4web version 1.72, the pgn4web.js code is checked with the lint +tool (see https://www.javascriptlint.com). +Plase note that warnings "lint warning: increment (++) and decrement (--) +operators used as part of greater statement" are ignored. +Lint validation should allow for easy compression of the javascript code, +for instance using https://javascriptcompressor.com/ +Although a compression beyond 50% can be achieved, only the uncompressed +version is distributed, but if you want to use a compressed version on your +site, the pgn4web.js code should support it. + +As of pgn4web version 2.71 strict mode is used, see statement: "use strict"; + + +KNOWN BUGS AND BUG FIXES + +Comments starting with "knownbug:" refer to known bugs currently in the pgn4web code. +Commemts starting with "bugfix:" highlight workarounds coping with issues of specific browser versions. + + +CREDITS AND LICENSE + +javascript modifications of Paolo Casaschi (pgn4web@casaschi.net) on code +from the https://ficsgames.org database, in turn likely based on code from the +LT PGN viewer at http://www.lutanho.net/pgn/pgnviewer.html + +PNG images from http://ixian.com/chess/jin-piece-sets (creative commons +attribution 4.0 international license) by Eric De Mund. +SVG images from https://commons.wikimedia.org/wiki/Category:SVG_chess_pieces +by Colin M.L. Burnett; licensed under GFDL (www.gnu.org/copyleft/fdl.html), +CC-BY-SA-3.0 (www.creativecommons.org/licenses/by-sa/3.0/) or +GPL (www.gnu.org/licenses/gpl.html), via Wikimedia Commons. SVG images from +https://openclipart.org/search/?query=chess+symbols+set by Igor Krizanovskij +and from https://openclipart.org/search/?query=Chess+tile both dedicated to +the Public Domain (https://creativecommons.org/publicdomain/zero/1.0/) as any +openclipart.org content. + +The figurine fonts are derived from the Liberation Sans font (released under +GNU General Public License, see https://github.com/liberationfonts) +with the addition of chess pieces from freeware fonts: the alpha2 font (Peter +Strickland), the good companion font (David L. Brown), the merida font (Armando +H. Marroquin), the pirate font (Klaus Wolf) and the chess usual font (Armando +H. Marroquin). The original chess fonts and more details are available at +https://www.enpassant.dk/chess/fonteng.htm +The chess informant symbols font is used with permission from the Chess +Informant publishing company (https://www.sahovski.com/). The chess ole figurin +font is from the ChessOLE project (David Frank) and it is available at the en +passant site (https://www.enpassant.dk/chess/fonteng.htm). + +Some of the PGN files for the examples are coming from "The Week in Chess" at +https://www.theweekinchess.com (file twic944.pgn), from the scid project at +http://scid.sourceforge.net (file tactics.pgn, with minor modifications), and +from the Chess Informant publishing company at https://www.sahovski.com/ (file +chess-informant-sample.pgn). + +The jscolor javascript code is maintained by Honza Odvarko +(https://odvarko.cz/) and released under the GNU Lesser General Public License +(https://www.gnu.org/copyleft/lesser.html) +See https://jscolor.com/ + +The ECO code (https://en.wikipedia.org/wiki/Encyclopaedia_of_Chess_Openings) for +game opening classification is a trademark of the Chess Informant publishing +company (https://www.sahovski.com/). + + +The above items remains subject to their original licenses (if any). + + +Remaining pgn4web code is copyright (C) 2009-2025 Paolo Casaschi + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +See license-gpl-2.0.txt license file. + +You are free to use pgn4web in your website or blog; you are not required to +acknowledge the pgn4web project, but if you want to do so the following line +might be used: +javascript chess viewer courtesy of pgn4web + +You are also encouraged to notify pgn4web@casaschi.net that you are using +pgn4web. + +END + diff --git a/assets/pgnviewer/hort-martius.pgn b/assets/pgnviewer/hort-martius.pgn new file mode 100644 index 0000000..8747012 --- /dev/null +++ b/assets/pgnviewer/hort-martius.pgn @@ -0,0 +1,13 @@ +[Event "Simultanturnier Nordhalben"] +[White "Hort,Vlastimil"] +[Black "Martius,Roland"] +[Site ""] +[Round ""] +[Annotator ""] +[Result "0-1"] +[Date "1992.02.28"] +[PlyCount "102"] +[StartFlipped "1"] + +1. d4 f5 2. Nf3 e6 3. Nc3 d5 4. Bf4 c6 5. e3 Be7 6. h4 Nd7 7. Be2 Ngf6 8. Ne5 O-O 9. f3 Nh5 10. g3 a6 11. Qd2 Nxf4 12. exf4 Bd6 13. O-O-O Qc7 14. g4 b5 15. gxf5 exf5 16. Rdg1 Nf6 17. h5 Bxe5 18. fxe5 Ne8 19. Bd3 Qf7 20. Ne2 Ra7 21. Nf4 Nc7 22. Ng6 Re8 23. c3 Ne6 24. Nh4 Nd8 25. Rg5 c5 26. Rhg1 Qf8 27. Nxf5 Ne6 28. R5g4 Rc7 29. dxc5 Qxc5 30. Kb1 Qf8 31. Qg2 Kh8 32. Bc2 Rd8 33. Qh2 Rdd7 34. Nh4 Kg8 35. f4 d4 36. Bb3 Rf7 37. f5 dxc3 38. Ng6 c2+ 39. Bxc2 Qc5 40. R4g2 Nd4 41. e6 Rf6 42. h6 Nxc2 43. Ne7+ Rxe7 44. Rxc2 Qxf5 45. Qb8 Rf8 46. hxg7 Rfe8 47. Qh2 Bxe6 48. Ka1 Bf7 49. Rcc1 Qd5 50. b3 Re2 51. Qg3 Qd2 {[#]} 0-1 + diff --git a/assets/pgnviewer/images/bb.png b/assets/pgnviewer/images/bb.png new file mode 100644 index 0000000..56693d3 Binary files /dev/null and b/assets/pgnviewer/images/bb.png differ diff --git a/assets/pgnviewer/images/bk.png b/assets/pgnviewer/images/bk.png new file mode 100644 index 0000000..8f09677 Binary files /dev/null and b/assets/pgnviewer/images/bk.png differ diff --git a/assets/pgnviewer/images/bn.png b/assets/pgnviewer/images/bn.png new file mode 100644 index 0000000..cc8e77d Binary files /dev/null and b/assets/pgnviewer/images/bn.png differ diff --git a/assets/pgnviewer/images/bp.png b/assets/pgnviewer/images/bp.png new file mode 100644 index 0000000..2dcf19c Binary files /dev/null and b/assets/pgnviewer/images/bp.png differ diff --git a/assets/pgnviewer/images/bq.png b/assets/pgnviewer/images/bq.png new file mode 100644 index 0000000..bfd42f3 Binary files /dev/null and b/assets/pgnviewer/images/bq.png differ diff --git a/assets/pgnviewer/images/br.png b/assets/pgnviewer/images/br.png new file mode 100644 index 0000000..61ac4d1 Binary files /dev/null and b/assets/pgnviewer/images/br.png differ diff --git a/assets/pgnviewer/images/clear.png b/assets/pgnviewer/images/clear.png new file mode 100644 index 0000000..6d4e3bb Binary files /dev/null and b/assets/pgnviewer/images/clear.png differ diff --git a/assets/pgnviewer/images/wb.png b/assets/pgnviewer/images/wb.png new file mode 100644 index 0000000..f9b4a7b Binary files /dev/null and b/assets/pgnviewer/images/wb.png differ diff --git a/assets/pgnviewer/images/wk.png b/assets/pgnviewer/images/wk.png new file mode 100644 index 0000000..095ef25 Binary files /dev/null and b/assets/pgnviewer/images/wk.png differ diff --git a/assets/pgnviewer/images/wn.png b/assets/pgnviewer/images/wn.png new file mode 100644 index 0000000..471cfe7 Binary files /dev/null and b/assets/pgnviewer/images/wn.png differ diff --git a/assets/pgnviewer/images/wp.png b/assets/pgnviewer/images/wp.png new file mode 100644 index 0000000..a872cbe Binary files /dev/null and b/assets/pgnviewer/images/wp.png differ diff --git a/assets/pgnviewer/images/wq.png b/assets/pgnviewer/images/wq.png new file mode 100644 index 0000000..76f37d2 Binary files /dev/null and b/assets/pgnviewer/images/wq.png differ diff --git a/assets/pgnviewer/images/wr.png b/assets/pgnviewer/images/wr.png new file mode 100644 index 0000000..f5fd506 Binary files /dev/null and b/assets/pgnviewer/images/wr.png differ diff --git a/assets/svg/logo.svg b/assets/svg/logo.svg new file mode 100644 index 0000000..f8c072a --- /dev/null +++ b/assets/svg/logo.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + Bad Steben + + 19 + + 82 + + +Schachfreunde + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +