Re: Is making a bare-bones blog with just HTML/CSS possible?
Posted: Fri Sep 06, 2019 9:58 am
User and developer community
https://board.s9y.org/
Of course you can do it all by hand, but aren't computers just there to relieve us of such repetitive work? And maybe it will be nice, later on, to be able to display the posts sorted not only by date, but also by topic (or categories). Maybe you want to add images later on, with automatic thumbnails; maybe you don't want to write your posts all in HTML, but use a simpler markup language like Markdown or Textile. Perhaps you want to add a RSS feed so people can subscribe to your blog with their feed reader.MosesKhan wrote: Fri Sep 06, 2019 8:47 am I've actually made a very basic version of what I want using premade html and CSS and then editing it but I'm still somewhat lost and am not even sure if using just those two things can even make a blog.
I'm going for a super bare-bones, simple blog, with a home page showing my latest post(s) in full, and then an archive page showing links/titles of all past blog posts in chronological order (and then you can go to a page of one of them).
Is this even possible with just HTML/CSS? Could I add new blog posts with ease? It seems that all I'd have to do with each new one is to go into the code and simply add my text to the home page + create a new page for said post + add link to said page in my archives page.
I don't consider it very professional to create and update blog posts, your start page and your archives all by hand; every time you add a post you'll have to copy it (or include it) on your start page, remove the oldest one from there and add it to your archive page. That's a lot of dull, error-prone work and not much fun.MosesKhan wrote: Fri Sep 06, 2019 8:47 amI don't want to use a blog publishing service because it just looks too flashy for me and seems less professional to me than a simple homemade site. I don't like the scrolling and images and flashiness of those sites (however they're still great).
You can, but you shouldn't. You'll have to do a lot of boring extra work that way with no benefit at all.MosesKhan wrote: Fri Sep 06, 2019 8:47 amTl;dr All I'm asking in this post is if a simple blog site with no comments is possible using html only. Thanks.
That was my first thought, too, but I tend to give the benefit of the doubt in that case.