Репозиторий с шуточным резюме на питоне.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
4.3 KiB

3 years ago
<html>
<head>
<title>Логово Игоря</title>
<link rel="stylesheet" href="{{ url_for('static', path='/prism.css') }}" rel="stylesheet">
<link id="favicon" rel="icon" type="image/x-icon" href={{ url_for('static', path='/favicon.png') }}>
3 years ago
<script src="{{ url_for('static', path='/prism.js')}}"></script>
<link href="https://unpkg.com/nes.css@2.3.0/css/nes.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
</head>
<body style="background-color: #212529">
3 years ago
<header class>
<div class="container" >
<div class="nav-brand">
<h2 style="color: #00aa00 ;">Логово Игоря</h2>
<div class="nes-balloon from-right is-dark">
<div class="name">
Привет! Я Игорь.
</div>
<p>Прогаю,ковыряю DevOps-пайплайны,малинки и прочие SBC...</p>
</div>
</div>
</div>
</header>
<div class="about">
<img src="/static/rabbit.png">
<a href="/" class="nes-btn is-success ">Главная</a>
3 years ago
<a href="tg://resolve?domain=ElpinOfficial" class="nes-btn is-primary">Мой Телеграм: @ElpinOfficial </a>
<a href="https://github.com/teleigran" class="nes-btn is-warning "><i class="nes-icon github is-small"></i> GitHub</a>
<a href="http://ielpin.ru/git/ElpinPublic" class="nes-btn is-primary">Мои частные репозитории</a>
3 years ago
<i>Rendered by <b>FastApi</b></i>
</div>  
<table>
<tr>
<td>
<pre style="text-align: left; vertical-align: top;padding: 5px;height:100%;width:100%">
<!-- TODO Rewrite with REAL code as in main /cv-->
<code class="language-python">
from humans import Sex
from employee.applicants import Applicant
me = Applicant( first_name="Игорь",
last_name="Ельпин",
sex=Sex.MALE,
birthday="16-11-1989")
me.say(me.about())
me.say(me.hard_skills())
</code>
</pre>
</td>
<td>
<div class="nes-balloon from-right is-dark">
<p>Игорь Ельпин(говорит):
Игорь Ельпин. Мужчина 1989-11-16 (33 полных лет)
</p>
</div>
<div class="nes-balloon from-right is-dark">
<p>Игорь Ельпин(говорит):</p>
<div class="nes-container is-dark with-title">
<p class="title">Hard Skill: Linux = 85% </p>
<progress class="nes-progress is-success" value="85" max="100"></progress>
</div>
<div class="nes-container is-dark with-title">
<p class="title">Hard Skill: Docker = 55%</p>
<progress class="nes-progress is-primary" value="55" max="100"></progress>
</div>
<div class="nes-container is-dark with-title">
<p class="title">Hard Skill: Python = 35%</p>
<progress class="nes-progress is-warning" value="35" max="100"></progress>
</div>
</div>
</td>
</tr>
<tr>
<td>
<pre title="projects.py" style="vertical-align: top;padding: 5px;height:100%;width:100%">
<code class="language-python">
def show_my_projects():
return [project for project in projects if project.sense is not None]
</code>
</pre>
<td>
<a href="/cv" class="nes-btn is-primary"><i class="nes-icon github is-small"></i><b> `>>> class project <span style="color:#ac0909 ;">Resume</span>`</span>`</b></a>
<a href="/pycoral" class="nes-btn is-primary"><i class="nes-icon github is-small"></i><b> `>>> class project<span style="color:#ac0909 ;"> PYCORAL_CCTV</span>`</b></a>
</td>
</tr>
</table>
3 years ago
</div>
</body>
</html>