Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

I have been writing my website by hand for a long time, using Gedit(On Ubuntu). Recently I have discovered sublime text, which works great, but I still write it by hand.

Now I am looking for something like this, which is a wordpress add article feature/plugin/??

But I don't want the entire Wordpress, Drupal or Joomla software, I want an add article software on my website, which I can edit to fit my needs.

(edit my websites source code with sublime text at home. add article from home or any where else,)

share|improve this question
Can you code? If yes you could build a solution for yourself pretty easily, using a micro web framework in the language of your choice. – elssar Jan 24 at 12:47
@elssar I can code, using HTML/CSS(php/javscript i am a beginner in)... what is a "micro web framework"!? – blade19899 Jan 24 at 13:08
A microframework is something that helps you build dynamic websites easily. I would suggest googling a bit and checking them out. – elssar Jan 24 at 13:13

3 Answers

You might look into the software "Jekyll" for easy blogging without installing a full-blown CMS like Drupal or Wordpress: http://jekyllbootstrap.com/

It requires git to publish pages.

share|improve this answer

Well, how much coding do you want to do?

The simplest way would be to use Zapier to watch for updates on either a folder on your dropbox(or a similar service), or if you use github, then look for a a new gist. When that even occurs, call a url on your site, which will then pull the post to your website. For example, you could this recipe on Zapier to sent a post request when a new Gist is detected.

Another way could be to take Zapier out of the equation, and send the post request yourself.

share|improve this answer

I think you want front end as your wish , you are not interested to use CMS for your for your front end but you need to manage the content @ the backend using any tool....

You Install the wordpress in your server in any folder like /blog or /cms and add some article using wp-admin

Use php or any web scripting language fetch the records from the wp database and display in your website

Am also using the same method refer my website http://asvignesh.in/blog_all_titles.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.