Inspiration and insights to help you grow, create, and lead.
Blog Updates Snippets Tips English 한국어 日本語 {{@article: title :}}Essepage•{{@article: date :}}• {{#: 궁극의 프론트엔드 온라인 웹 개발 플랫폼 Essepage (에스페이지)가 릴리즈 되었습니다.Essepage는 웹페이지 제작을 위한 프론트엔드(Front-end) 및 백엔드(Back-end)기능을 갖춘 온라인 서비스로 ...
Richard
Essepage has arrived to let you create web pages directly in your web browser! While building numerous websites, I've spent a lot of time setting up version control environments and configuring servers before even starting development. Though these tasks are nearly identical each time, they're compl...
Essepage has arrived to let you create web pages directly in your web browser! While building numerous websites, I've spent a lot of time setting up version control environments and configuring servers before even starting development. Though these tasks are nearly identical each time, they're com...
When someone visits a URL that doesn't exist on your site, the system displays a 404 Not Found page — a message that simply means, “The page you're looking for doesn’t exist.” By default, Essepage provides a built-in 404 page that looks like this: It serves its purpose, but let’s be honest — it’s no...
Parameter folders in Essepage allow you to create clean, dynamic URLs where parts of the URL are used directly in your page content. It’s a simple yet powerful way to build pages like /page/1 or /product/abcd-1234-5678 without any backend routing logic. What Are Parameter Folders? In your fi...
Essepage fully supports multibyte characters in file and folder names — including Korean, Chinese, Japanese, and many other languages that use characters beyond the basic Latin alphabet. This means you can name your files and folders naturally in your native language, with no need for additional enc...
Essepage uses a simple and intuitive routing system based on a file system structure, similar to traditional static site generators. This approach makes it easy to understand and manage how pages are accessed in your site. Default Page: +page.essepage In each folder, a file named +page.essepage acts...
How to Edit, Apply, and Publish in Essepage Essepage gives you control over how and when your web content goes live. Understanding the difference between Publish, Apply, and Apply All is essential to managing your pages effectively. The Typical Workflow In Essepage, creating and managing a page typi...
To understand how Essepage works, it helps to first compare it with a traditional HTML page. Most webpages follow a common structure. They usually start with the DOCTYPE declaration and include the <html>, <head>, and <body> tags. But Essepage is designed to minimize repeated work....
So far, you’ve added a navigation menu to both your homepage and About page. But if you ever want to update that menu, you’d need to open each file and edit it manually. That doesn’t scale—and that’s where components come in. A component is a separate file that contains a reusable chunk of code—like...