-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
43 lines (37 loc) · 1.37 KB
/
contact.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
require_once 'config.php';
require_once 'connect.php';
require_once 'vendor/autoload.php';
$parsedown = new Parsedown();
// 您可以在这里添加特定于联系页面的PHP代码,例如处理表单提交
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - <?php echo BLOG_TITLE; ?></title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" href="styles/styles/atom-one-dark.css">
</head>
<body>
<?php include 'menu.php'; ?>
<main class="container">
<h1>Contact Me</h1>
<section class="contact-info">
<h2>My Introduction</h2>
<p>Hello, I'm [Your Name], welcome to my personal page. Here you can find my projects and ways to get in touch with me.</p>
<h2>Contact Details</h2>
<ul>
<li>Discord: w4r3s2022</li>
<li>Github: <a href="https://github.com/w4r3s" target="_blank">https://github.com/w4r3s</a></li>
</ul>
</section>
</main>
<?php include 'footer.php'; ?>
<script src="styles/highlight.min.js"></script>
<script>console.log('Contact page loaded');</script>
<script>hljs.highlightAll();</script>
</body>
</html>