Merhaba bir tema buldum ama ama kaydederken bu hatayı alıyorum"
org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 87; The reference to entity "display" must end with the ';' delimiter."
tema kodu burada hiç anlam çıkaramadım yarımcı olacak arkadaşlar varmı lütfen ücretli yardım için yazmayın.
<?xml version="1.0" encoding="UTF-8" ?>
<b:template xmlns='http://www.w3.org/1999/xhtml'>
<!-- Head Section: Zorunlu <head> etiketi -->
<b:section id='head' class='head' showaddelement='no'>
<head>
<b:include data='blog' name='all-head-content'/>
<!-- JavaScript için modern font ve ikonlar ekliyoruz -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
</b:section>
<!-- Skin Section: Tek bir <b:skin> etiketi ile CSS kuralları burada tanımlanır -->
<b:skin><![CDATA[
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
header {
width: 100%;
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
font-size: 1.2em;
margin: 5px 0 0;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
.main-content {
width: 65%;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.sidebar {
width: 30%;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
/* Manşet bölümü stili ve animasyonlar */
.featured-post {
background-color: #222;
color: #fff;
padding: 20px;
margin-bottom: 20px;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transform: translateY(50px);
transition: opacity 1s ease, transform 1s ease;
}
.featured-post img {
width: 100%;
height: auto;
margin-bottom: 10px;
transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.featured-post h2, .featured-post p {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.featured-post:hover img {
transform: scale(1.1);
filter: blur(2px);
}
.featured-post:hover h2, .featured-post:hover p {
opacity: 1;
transform: translateY(0);
}
footer {
width: 100%;
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
/* Responsive düzen için media sorguları */
@media only screen and (max-width: 768px) {
.container {
flex-direction: column;
}
.main-content, .sidebar {
width: 100%;
margin-bottom: 20px;
}
header h1 {
font-size: 2em;
}
header p {
font-size: 1em;
}
}
]]></b:skin>
<b:includable id='main'>
<b:section id='header' class='header' showaddelement='no'>
<header>
<h1>Blog Başlığı</h1>
<p>Alt Başlık veya Açıklama</p>
</header>
</b:section>
<div class="container">
<!-- Manşet Gönderi Bağımsız (Blogger özelliği değil, statik içerik olarak siz ekleyeceksiniz) -->
<div class="featured-post">
<img src="MANSET_GORSEL_URL" alt="Manşet Görseli">
<h2><a href="MANSET_KONU_URL">Manşet Başlığı</a></h2>
<p>Manşet açıklaması buraya gelecek. Bu gönderi, bağımsız olarak sizin belirlediğiniz bir konu olacak.</p>
</div>
<!-- Ana İçerik Bölümü -->
<div class="main-content">
<b:loop values='data:blog.posts' var='post'>
<div class="post">
<h2><a expr:href='data:post.url'><data:post.title/></a></h2>
<p><data:post.snippet/></p>
</div>
</b:loop>
</div>
<!-- Yan Panel -->
<div class="sidebar">
<h3>Hakkımda</h3>
<p>Bu bölümde kendinizi tanıtan kısa bir metin olabilir.</p>
<h3>Kategoriler</h3>
<b:widget id='Label1' type='Label'/>
</div>
</div>
<b:section id='footer' class='footer' showaddelement='no'>
<footer>
<p>Telif Hakkı © 2024 - Kişisel Blog</p>
</footer>
</b:section>
</b:includable>
<!-- JavaScript ile eklenen bazı dinamik fonksiyonlar -->
<script type="text/javascript">
// Sayfa yüklendiğinde manşet bölümünü yavaşça görünür hale getir
document.addEventListener('DOMContentLoaded', function() {
var featuredPost = document.querySelector('.featured-post');
featuredPost.style.opacity = '1';
featuredPost.style.transform = 'translateY(0)';
});
</script>
</b:template>