45 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="ru">
 | 
						|
    <head>
 | 
						|
        <link rel="stylesheet" href="{{ url_for('static', filename='assets/css/fonts.css') }}">
 | 
						|
        <link rel="stylesheet" href="{{ url_for('static', filename='assets/css/style.css') }}">
 | 
						|
        <title>thematdev</title>
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <div class="pagehead">
 | 
						|
            <div class="pagehead-inner">
 | 
						|
                <h1 class="mainh">thematdev</h1>
 | 
						|
                <p> Тут можно подпись какую-то сделать </p>
 | 
						|
                <p> Ваш IQ: {{ random_number }}</p>
 | 
						|
                <div class="btn-container">
 | 
						|
                    <button onclick="location.href='https://{{texlink}}'" type="button" class="btn-tex">
 | 
						|
                        <p> TeX </p>
 | 
						|
                    </button>
 | 
						|
                    <button type="button">
 | 
						|
                        Wiki
 | 
						|
                    </button>
 | 
						|
                    <button onclick="location.href='https://t.me/thematdev'" type="button">
 | 
						|
                        TG
 | 
						|
                    </button>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="pagebody" id="pb">
 | 
						|
            <div class="pagebody-inner-section" id="pbi">
 | 
						|
                <h1>Мои проекты</h1>
 | 
						|
                <div class="project-container" id="pbic">
 | 
						|
                    {% for project in projects %}
 | 
						|
                        <div class="project-element">
 | 
						|
                            <h1> {{ project.title }}</h1>
 | 
						|
                            <img src="{{ url_for('static', filename='assets/{0}'.format(project.image))}}" width=200 height=200>
 | 
						|
                            <p> {{ project.description }} </p>
 | 
						|
                        </div>
 | 
						|
                    {% endfor %}
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <script src="{{ url_for('static', filename='js/projects.js') }}"></script>
 | 
						|
        Идея про Гауссово распределение вместо обычного рандома: <a href="https://t.me/Prentor">Prentor</a> и <a href="https://t.me/pavel_the_best"> pavel_the_best </a>
 | 
						|
    </body>
 | 
						|
</html>
 |