{"id":32492892,"url":"https://github.com/fkucukkara/razor101","last_synced_at":"2026-05-17T15:09:11.723Z","repository":{"id":317050863,"uuid":"985813623","full_name":"fkucukkara/razor101","owner":"fkucukkara","description":"This project serves as a template demonstration of ASP.NET Core Razor Pages, showcasing the fundamental concepts and best practices of Razor Pages development. It's built using .NET 9.0 and follows modern web development patterns.","archived":false,"fork":false,"pushed_at":"2025-09-28T13:07:56.000Z","size":1020,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-28T15:18:49.968Z","etag":null,"topics":["csharp","dotnet-core","razor-pages","template"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fkucukkara.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-18T15:26:36.000Z","updated_at":"2025-09-28T13:07:59.000Z","dependencies_parsed_at":"2025-09-28T17:47:28.291Z","dependency_job_id":null,"html_url":"https://github.com/fkucukkara/razor101","commit_stats":null,"previous_names":["fkucukkara/razor101"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fkucukkara/razor101","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Frazor101","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Frazor101/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Frazor101/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Frazor101/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fkucukkara","download_url":"https://codeload.github.com/fkucukkara/razor101/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Frazor101/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33143276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet-core","razor-pages","template"],"created_at":"2025-10-27T11:56:38.441Z","updated_at":"2026-05-17T15:09:11.717Z","avatar_url":"https://github.com/fkucukkara.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Razor101 - ASP.NET Core Razor Pages Sample Project\n\nThis project serves as a template demonstration of ASP.NET Core Razor Pages, showcasing the fundamental concepts and best practices of Razor Pages development. It's built using .NET 9.0 and follows modern web development patterns.\n\n## 🚀 Features\n\n- Clean and organized Razor Pages project structure\n- Bootstrap-based responsive design\n- jQuery integration for client-side functionality\n- Built-in error handling and privacy pages\n- Static file serving (CSS, JavaScript, images)\n- Preconfigured development and production settings\n\n## 🛠️ Prerequisites\n\n- [.NET 9.0 SDK](https://dotnet.microsoft.com/download) or later\n- Any code editor (recommended: Visual Studio 2022 or Visual Studio Code)\n\n## 📦 Project Structure\n\n```\nRazor101/\n├── Pages/                     # Razor Pages and their code-behind files\n│   ├── Shared/               # Shared layouts and partial views\n│   ├── _ViewImports.cshtml   # Common imports and tag helpers\n│   ├── _ViewStart.cshtml     # Common view configurations\n│   ├── Error.cshtml          # Error handling page\n│   ├── Index.cshtml          # Home page\n│   └── Privacy.cshtml        # Privacy policy page\n├── wwwroot/                   # Static files (CSS, JS, images)\n│   ├── css/                  # Stylesheet files\n│   ├── js/                   # JavaScript files\n│   └── lib/                  # Third-party libraries\n├── Properties/                # Project properties and launch settings\n├── appsettings.json          # Application settings\n└── Program.cs                # Application entry point and configuration\n```\n\n## 🚀 Getting Started\n\n1. Clone the repository:\n   ```powershell\n   git clone [repository-url]\n   cd Razor101\n   ```\n\n2. Restore dependencies:\n   ```powershell\n   dotnet restore\n   ```\n\n3. Run the application:\n   ```powershell\n   dotnet run\n   ```\n\n4. Open your browser and navigate to:\n   ```\n   https://localhost:5001\n   ```\n\n## 🔧 Configuration\n\nThe project includes two configuration files:\n- `appsettings.json`: Main configuration file\n- `appsettings.Development.json`: Development-specific settings\n\n## 🧪 Features Demonstrated\n\n1. **Razor Pages**: Model-View-ViewModel pattern with code-behind files\n2. **Layouts**: Shared layout using `_Layout.cshtml`\n3. **Static Files**: Serving static content from wwwroot\n4. **Error Handling**: Custom error page implementation\n5. **Configuration**: Environment-based settings management\n6. **Tag Helpers**: Built-in ASP.NET Core tag helpers usage\n\n## 🔒 Security\n\n- Built-in security features of ASP.NET Core\n- HTTPS configuration\n- Anti-forgery token validation\n- Secure cookie handling\n\n## 🎯 Best Practices Implemented\n\n- Clean separation of concerns\n- Proper use of layouts and partial views\n- Environment-specific configurations\n- Built-in dependency injection\n- Proper static file organization\n\n## 📚 Learning Resources\n\n- [Official ASP.NET Core Documentation](https://docs.microsoft.com/en-us/aspnet/core/)\n- [Razor Pages Documentation](https://docs.microsoft.com/en-us/aspnet/core/razor-pages/)\n- [ASP.NET Core Tutorials](https://docs.microsoft.com/en-us/aspnet/core/tutorials/)\n\n## License\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\nThis project is licensed under the MIT License. See the [`LICENSE`](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffkucukkara%2Frazor101","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffkucukkara%2Frazor101","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffkucukkara%2Frazor101/lists"}