733be12298
- Add GitHub Actions workflow for automatic deployment to GitHub Pages - Configure Decap CMS for Turkish blog post management - Add Netlify Identity integration for authentication - Create admin redirect page and routing - Add comprehensive setup documentation - Configure proper Turkish field labels and defaults - Enable image uploads and media management Site will now auto-deploy on every push to main branch. Access CMS at: https://ym1ktc.github.io/ARC-Web-Sitesi/admin/ 🤖 Generated with Claude Code
27 lines
841 B
HTML
27 lines
841 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="robots" content="noindex" />
|
|
<title>ARC İçerik Yöneticisi</title>
|
|
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- Include the script that builds the page and powers Decap CMS -->
|
|
<script src="https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js"></script>
|
|
<script>
|
|
// Initialize Netlify Identity widget
|
|
if (window.netlifyIdentity) {
|
|
window.netlifyIdentity.on("init", user => {
|
|
if (!user) {
|
|
window.netlifyIdentity.on("login", () => {
|
|
document.location.href = "/admin/";
|
|
});
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|