What is a good solution for creating simple static websites?

I want to optimize the process of creating static websites.

I want to avoid having to perform multiple editing operations when I need to change a single element of a page, such as text or an image in a footer.

I want to be able to use my tool on a local computer to upload the resulting structure to my server.

I do not want to use a tool that should be on the server. I just do not want a php solution when I do not need its power or it is not needed.

Of course, I do not want to use CMS.

Ideally, I would like the solution to be well documented.

I looked at the perl toolkit. But he is capable of so much that his documentation effectively hides the simple tasks that I want to complete.

I also looked at webgen, but the same problem exists. It can do so much that it is difficult to create for a simple task the creation of a small static website. Again, the documentation is very detailed, but useless for creating simple sites.

What solutions do other developers use?

+3
source share
6 answers

, Dreamweaver, . + - , HTML. , . , DW, , . Frontpage , , .

, Perl - , wget. HTML-, . , () , HTML.

+1

, ... HTML - , ASP.NET, Masterpages. PHP ASP, , .

, .

0

- , ASP.NET, - iFrames, SEO, .

, ASP.NET. Mono. Apache * nix. - . , , .NET . , , html , - . .

0
0

Adobe Contribute - Dreamweaver , HTML. , - -, , ( ?). FTP/SFTP .

, - , , . , - Adobe .

0

There is a Ristretto project: https://github.com/ViliamKopecky/Ristretto . It is designed to easily create HTML files. It uses templating from the Nette Framework (PHP), but creates simple HTML, so you don't need PHP on the server.

It also allows you to keep variables away from files in Neon format (similar to Yaml).

0
source

Source: https://habr.com/ru/post/1731822/


All Articles