Main functions

This commit is contained in:
2025-10-26 14:44:10 +09:00
parent 6ff35e26f4
commit 291fc63a4c
901 changed files with 79783 additions and 201383 deletions

View File

@@ -1,18 +1,4 @@
<!DOCTYPE html>
<html lang="<%= locale || 'ko' %>" class="<%= theme === 'dark' ? 'dark' : '' %>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= portfolio.title %> - SmartSolTech 포트폴리오</title>
<!-- SEO Meta Tags -->
<meta name="description" content="<%= portfolio.seo?.metaDescription || portfolio.shortDescription || portfolio.description %>">
<meta name="keywords" content="<%= portfolio.seo?.keywords?.join(', ') || portfolio.technologies?.join(', ') %>">
<!-- Open Graph -->
<meta property="og:title" content="<%= portfolio.title %> - SmartSolTech">
<meta property="og:description" content="<%= portfolio.shortDescription || portfolio.description %>">
<meta property="og:type" content="article">
<!-- Portfolio detail page content starts here -->
<% if (portfolio.images && portfolio.images.length > 0) { %>
<meta property="og:image" content="<%= portfolio.images.find(img => img.isPrimary)?.url || portfolio.images[0].url %>">
<% } %>
@@ -29,10 +15,7 @@
<link href="https://unpkg.com/swiper@8/swiper-bundle.min.css" rel="stylesheet">
<link href="/css/main.css" rel="stylesheet">
<link href="/css/fixes.css" rel="stylesheet">
<link href="/css/dark-theme.css" rel="stylesheet">
</head>
<body class="font-sans dark:bg-gray-900 dark:text-gray-100">
<%- include('partials/navigation') %>
<!-- Portfolio Header -->
<section class="pt-20 pb-12 bg-gradient-to-br from-gray-900 via-blue-900 to-purple-900">
@@ -336,7 +319,7 @@
</div>
</section>
<%- include('partials/footer') %>
<!-- Portfolio detail page content ends here -->
<!-- Scripts -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
@@ -469,6 +452,4 @@
};
return categoryNames[category] || category;
}
%>
</body>
</html>
%>