1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- ## SWX Configuration
- #
- ## Site title
- TITLE="$site_title"
- SUBTITLE=""
- HOSTNAME="$site_hostname"
- GAMEPATH="$lgn_game_path"
- GAMENAME="$lgn_game"
- GAMEVERSION="$lgn_game_version"
- DISPLAY_TITLE=0
- # Files and pages you don't want to see in menus
- BL="favicon.svg favicon.ico style.css robots.txt img"
- # File conversion to HTML
- CONVERTER="/usr/local/bin/multimarkdown" # md handler
- EXT=".md" # extension of files to convert
- # Maximum entries in RSS feed
- MAX=20
- # String to replace with new articles list
- NEWSSTR="%%%BLOG%%%"
- # LOG FILE
- LOG=swx.log
- # What you want in the header of you pages
- HEADER='<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
- <link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/bellota" type="text/css"/>
- <link rel="stylesheet" type="text/css" href="/res/lgn.css">
- <meta charset="UTF-8">
- <meta http-equiv="Refresh" content="60">
- <meta name="description" content="$meta_description">
- <meta name="keywords" content="$meta_keywords">
- '
- # HTML code to include in every HTML page
- # things to put on every page BEFORE the content
- TOPTEMPLATE='<div class="row titlebar text-center">
- <!-- The double-linking might look redundant, but it is so the clickable area is larger
- If only the div was linked, then Vimb, VimFX etc could not mark the text as a link
- If only the h1 tag was linked, then mobile users would have a smaller area to click -->
- <a href="/$schedule_name.html">
- <div class="col-md-6 col-lg-2">
- <a href="/$schedule_name.html">
- <h1><b>$header_schedule</b></h1>
- </a>
- </div>
- </a>
- <a href="/$list_name.html">
- <div class="col-md-6 col-lg-2">
- <a href="/$list_name.html">
- <h1><b>$header_list</b></h1>
- </a>
- </div>
- </a>
- <a href="/">
- <div class="col-md-6 col-lg-4">
- <a href="/">
- <img src="/res/LGN.png" width=140px>
- </a>
- </div>
- </a>
- <a href="/pub/$lgn_game_path">
- <div class="col-md-6 col-lg-2">
- <a href="/pub/$lgn_game_path/">
- <h1><b>$header_setup</b></h1>
- </a>
- </div>
- </a>
- <a href="/$contact_name.html">
- <div class="col-md-6 col-lg-2">
- <a href="/$contact_name.html">
- <h1><b>$header_contact</b></h1>
- </a>
- </div>
- </a>
- </div>
- '
- # things to put on every page AFTER the content
- BOTTOMTEMPLATE=""
- # HTML you want in footer
- FOOTER="
- <p><a href='http://yeuxdelibad.net/Programmation/swx.html'><img src='/res/badges/swx.png'/></a> ::
- <a href='https://creativecommons.org/licenses/by-sa/3.0/'><img src='/res/badges/cc.png'/></a> ::
- <a href='https://libertybsd.net'><img src='/res/badges/lbsd.png'/></a><p>
- <p><tiny>$footer</tiny></p>"
|