-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (57 loc) · 1.81 KB
/
index.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0;url=https://www.yemreak.com/arsiv/python">
<title>Yönlendirme</title>
<style>
body {
font-family: 'Arial', sans-serif;
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
}
.container {
text-align: center;
animation: fade 2s;
}
@keyframes fade {
0% { opacity: 0; transform: translateY(30px); }
100% { opacity: 1; transform: translateY(0); }
}
.spinner {
border: 8px solid rgba(255, 255, 255, .3);
border-radius: 50%;
border-top: 8px solid #333;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<div class="spinner"></div>
Yönlendiriliyorsunuz... Eğer yönlendirme otomatik olarak gerçekleşmezse, <a href="https://www.yemreak.com/arsiv/python">tıklayın</a>.
</div>
<script type="text/javascript">
// Mevcut URL'den slug'ı al
var currentSlug = window.location.pathname;
// Yönlendirme yapılacak URL'i oluştur
var newBaseURL = "https://www.yemreak.com/arsiv/python/";
var newURL = newBaseURL + currentSlug;
// 2 saniye sonra oluşturulan yeni URL'e yönlendirme yap
setTimeout(function(){
window.location.href = newURL;
}, 2000);
</script>
</body>
</html>