forked from brython-dev/brython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3f7328
commit 6477a6b
Showing
4 changed files
with
84 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Brython - Python in the browser | ||
www.brython.info | ||
www.brython.info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,85 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta name="description" content="Brython"> | ||
<meta name="keywords" content="Python,Brython"> | ||
<meta name="author" content="Pierre Quentel"> | ||
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | ||
<title>Brython</title> | ||
<link rel="stylesheet" href="doc/doc_brython.css"> | ||
<script src="../src/brython.js"></script> | ||
|
||
<script type="text/python3"> | ||
import header | ||
<head> | ||
<title>Brython</title> | ||
<meta charset="UTF-8"> | ||
<meta name="description" content="Brython"> | ||
<meta name="author" content="Pierre Quentel"> | ||
<meta name="keywords" content="Python, Brython"> | ||
<meta http-equiv="content-type" content="text/html"> | ||
<link rel="stylesheet" href="doc/doc_brython.css"> | ||
<link rel="shortcut icon" href="brython.png" type="image/x-icon"> | ||
<style> | ||
.letter { | ||
background-color: #fff; | ||
background-image: | ||
linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px), | ||
linear-gradient(#eee .1em, transparent .1em); | ||
background-size: 100% 1.2em; | ||
box-shadow:0 0 10px rgba(0,0,0,.3); | ||
margin:26px auto 0; | ||
max-width:666px; | ||
min-height:100px; | ||
padding:24px; | ||
position:relative; | ||
width:80%; | ||
font-family:Helvetica, sans-serif; | ||
text-align:center | ||
} | ||
.letter:before, .letter:after { | ||
content:""; | ||
height:98%; | ||
position:absolute; | ||
width:99%; | ||
z-index:-1 | ||
} | ||
.letter:before { | ||
background:#fafafa; | ||
box-shadow:0 0 9px rgba(0,0,0,.5); | ||
left:-9px; | ||
top:9px; | ||
transform:rotate(-5deg) | ||
} | ||
.letter:after { | ||
background:#f6f6f6; | ||
box-shadow:0 0 9px rgba(0,0,0,.5); | ||
right:-5px; | ||
top:5px; | ||
transform:rotate(5deg) | ||
} | ||
.letter > ul { | ||
line-height:2em; | ||
list-style-type:none; | ||
font-size: 20px | ||
} | ||
</style> | ||
<script src="../src/brython.js"></script> | ||
<script type="text/python3"> | ||
import header | ||
qs_lang, language = header.show() | ||
</script> | ||
|
||
qs_lang,language = header.show() | ||
</script> | ||
</head> | ||
|
||
<body onload="brython(1)"> | ||
|
||
<table id="banner" cellpadding=0 cellspacing=0> | ||
<tr id="banner_row"> | ||
</tr> | ||
</table> | ||
<table id="banner" cellpadding=0 cellspacing=0> | ||
<tr id="banner_row"> | ||
</table> | ||
|
||
<div style="text-align:center"> | ||
<H2 id="groups">Groups</H2> | ||
<div class="letter"> | ||
<h1 id="groups">Groups</h1> | ||
<hr> | ||
<ul> | ||
<li><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython" target=_blank >Group (English)</a> | ||
<li><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-fr" target=_blank >Groupe (français)</a> | ||
<li><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-es" target=_blank >Grupo (español)</a> | ||
<li><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-pt" target=_blank >Grupo (português)</a> | ||
<li><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-it" target=_blank >Gruppo (italiano)</a> | ||
</ul> | ||
</div> | ||
|
||
<p><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython" target="_blank">Group (English)</a> | ||
<br><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-fr" target="_blank">Groupe (français)</a> | ||
<br><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-es" target="_blank">Grupo (español)</a> | ||
<br><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-pt" target="_blank">Grupo (português)</a> | ||
<br><a href="https://groups.google.com/forum/?fromgroups=#!forum/brython-it" target="_blank">Gruppo (italiano)</a> | ||
</div> | ||
</body> | ||
|
||
</html> |