This commit is contained in:
Yash Karandikar 2022-07-22 21:31:09 -05:00
parent de24879ce5
commit e845c73251
6 changed files with 12 additions and 2 deletions

View File

@ -3,15 +3,15 @@
<head>
<meta charset="utf-8">
<title>Welcome to Yash's Website!</title>
<link rel="stylesheet" href="/style.css">
<!-- <link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,700;1,300;1,700&display=swap" rel="stylesheet"> -->
<link href="/fonts.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Welcome to Yash's Website!" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ current_url }}" />
<meta property="og:image" content="https://karx.xyz/favicon.ico" />
<title>{% block title %} {% endblock title %} - karx's website</title>
</head>
<body>

View File

@ -1,5 +1,7 @@
{% extends "base.html" %}
{% block title %}{{page.title}}{% endblock title %}
{% block content %}
<h1>
{{ page.title }}

View File

@ -1,5 +1,7 @@
{% extends "base.html" %}
{% block title %}{{section.title}}{% endblock title %}
{% block content %}
<h1>
{{ section.title }}

View File

@ -1,5 +1,7 @@
{% extends "base.html" %}
{% block title %}Welcome to Yash's website!{% endblock title %}
{% block content %}
<h1 class="text-align-center">
Welcome to Yash's website!

View File

@ -1,5 +1,7 @@
{% extends "base.html" %}
{% block title %}{{page.title}}{% endblock title %}
{% block content %}
<h1>
{{ page.title }}

View File

@ -1,5 +1,7 @@
{% extends "base.html" %}
{% block title %}{{section.title}}{% endblock title %}
{% block content %}
<h1>
{{ section.title }}