mutate
This commit is contained in:
parent
9ebdd74457
commit
c1c136630c
1 changed files with 32 additions and 57 deletions
89
build.py
89
build.py
|
@ -68,67 +68,42 @@ def main():
|
||||||
</head><body onload="main()"><header>
|
</head><body onload="main()"><header>
|
||||||
<!----------------------------------------------------------------------------->
|
<!----------------------------------------------------------------------------->
|
||||||
|
|
||||||
<input type="checkbox" id="dark" onclick="swap()" />
|
<h1>Marc Beninca</h1>
|
||||||
<h1><a href="#home">Marc Beninca</a></h1>
|
<input type="checkbox" id="dark" onclick="swap()">Dark</input>
|
||||||
|
|
||||||
<!----------------------------------------------------------------------------->
|
<!----------------------------------------------------------------------------->
|
||||||
</header><main>
|
</header><main>
|
||||||
<!----------------------------------------------------------------------------->
|
<!----------------------------------------------------------------------------->
|
||||||
<section id="main">
|
|
||||||
{nav('main')}
|
<div class="tabs">
|
||||||
{tabs['main']}
|
<input type="radio" onclick="update(id)"
|
||||||
</section>
|
name="tab" id="tab/my" />
|
||||||
<!----------------------------------------------------------------------------->
|
<label for="tab/my">
|
||||||
<section id="cv">
|
<div><div class="tabs">
|
||||||
{nav('cv')}
|
<input type="radio" onclick="update(id)"
|
||||||
{tabs['cv']}
|
name="tab/my" id="tab/my/info" />
|
||||||
</section>
|
<label for="tab/my/info">
|
||||||
<!----------------------------------------------------------------------------->
|
<div>{tabs['main']}</div>
|
||||||
<section id="git">
|
<input type="radio" onclick="update(id)"
|
||||||
{nav('git')}
|
name="tab/my" id="tab/my/id" />
|
||||||
{tabs['git']}
|
<label for="tab/my/id">
|
||||||
</section>
|
<div>{tabs['id']}</div>
|
||||||
<!----------------------------------------------------------------------------->
|
</div></div>
|
||||||
<section id="health">
|
<input type="radio" onclick="update(id)"
|
||||||
{nav('health')}
|
name="tab" id="tab/music" />
|
||||||
{tabs['health']}
|
<label for="tab/music">
|
||||||
</section>
|
<div>{tabs['music']}</div>
|
||||||
<!----------------------------------------------------------------------------->
|
</div>
|
||||||
<section id="id">
|
<!-- cv -->
|
||||||
{nav('id')}
|
<!-- git -->
|
||||||
{tabs['id']}
|
<!-- health -->
|
||||||
</section>
|
<!-- id -->
|
||||||
<!----------------------------------------------------------------------------->
|
<!-- lib -->
|
||||||
<section id="lib">
|
<!-- pubnix -->
|
||||||
{nav('lib')}
|
<!-- thesis -->
|
||||||
{tabs['lib']}
|
<!-- vegan -->
|
||||||
</section>
|
<!-- others -->
|
||||||
<!----------------------------------------------------------------------------->
|
|
||||||
<section id="music">
|
|
||||||
{nav('music')}
|
|
||||||
{tabs['music']}
|
|
||||||
</section>
|
|
||||||
<!----------------------------------------------------------------------------->
|
|
||||||
<section id="pubnix">
|
|
||||||
{nav('pubnix')}
|
|
||||||
{tabs['pubnix']}
|
|
||||||
</section>
|
|
||||||
<!----------------------------------------------------------------------------->
|
|
||||||
<section id="thesis">
|
|
||||||
{nav('thesis')}
|
|
||||||
{tabs['thesis']}
|
|
||||||
</section>
|
|
||||||
<!----------------------------------------------------------------------------->
|
|
||||||
<section id="vegan">
|
|
||||||
{nav('vegan')}
|
|
||||||
{tabs['vegan']}
|
|
||||||
</section>
|
|
||||||
<!----------------------------------------------------------------------------->
|
|
||||||
<section id="others">
|
|
||||||
{nav('others')}
|
|
||||||
{tabs['others']}
|
|
||||||
</section>
|
|
||||||
<!----------------------------------------------------------------------------->
|
|
||||||
</main></body></html>
|
</main></body></html>
|
||||||
'''
|
'''
|
||||||
css_file = os.path.join(css, 'index.css')
|
css_file = os.path.join(css, 'index.css')
|
||||||
|
|
Loading…
Reference in a new issue