Files
i2p.www/www.i2p2/pages/_layout_cs.html
sk7 6ed62362b1 I didn't realize the difference between language and region codes. In most
countries they are the same, for example "de" for Germany. However Czech is
special. Accorning to this article (in Czech, sorry) we have "cs" for Czech
language (from "cestina", the name of the language in Czech) and "CZ" for
the region code, meaning country Czech Republic:
http://zencart-solutions.palek.cz/cs/cestina-na-webu/cs-nebo-cz.html
I thought I better fix it before I start translating more pages.
2010-08-22 05:52:45 +00:00

29 lines
1.2 KiB
HTML

{% set lang = "cs" -%}
{% include "_urlify" -%}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" >
<head>
<title>{% filter capture('title') %}{% block title %}{% endblock %}{% endfilter %} - I2P</title>
<link rel="canonical" href="{{ domain }}/{{ path }}" />
<link rel="stylesheet" href="_static/styles/{{ theme }}.css" type="text/css" title="{{ theme }}" />
<link rel="shortcut icon" href="_static/favicon.ico" />
<link type="application/atom+xml" rel="alternate" href="http://code.google.com/feeds/p/i2p/downloads/basic" />
<meta name="robots" content="NOODP" />
</head>
<body>
<div class="hide"><a href="#main" title="Skip navigation" accesskey="2">Skip navigation</a></div>
<div class="logo">
<a href="index.html" class="fade"><img src="_static/images/i2plogo.png" alt="I2P Logo" title="Invisible Internet Project (I2P)" /></a>
</div>
<h1>{{ title }}</h1>
<div class="menu">
{% include "_menu.html" %}
</div>
<div class="main" id="main">
{% block content %}{% endblock %}
</div>
</body>
</html>