Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialChen Wang
7,371 PointsCreating a personal blog
I know that wordpress is a very convenient way to setup a personal blog.
I just find this blog. http://blog.penso.info
It seem not created by wordpress. I have some basic knowledge about both front-end and back-end. However, I can't figure out what technology it uses.
I mean how the blogger manage the content? It should has some content management interface, right? It doesn't make any sense if he modify the code every time to post a new blog.
Normally, for this type of blog, if I want to do some secondary development or modification, how to do it ?
2 Answers
Timothy Smith
2,072 PointsIt looks like he is using Jekyll and GitHub Pages. The blog is made up of static files that run through a processor that manages the dates and layout. As long as the posts have the correct file names they are placed in the correct sections on the blog.
Here is his source code.
It looks like Treehouse will be posting a course on this subject soon!
Kevin Korte
28,149 PointsDefinitely Jekyll, which is really cool. There is no admin interface, there is no modifying code. You just create a new file for each post, write it in markdown, upload it to the server, and than Jekyll precompiles everything into plain HTML. Because you're basically serving a static HTML site, it's super fast, more secure, and really easy to manage.
Check out jekyll >> http://jekyllrb.com/
As far as hosting, builtwidth.com is saying it's hosted on Amazon AWS, and also uses AWS CDN. I believe with github pages, the url has to be in some form http://username.github.io
However, using github pages is free, and it is a popular choice to host their personal blog with pages and jekyll.
Chen Wang
7,371 PointsChen Wang
7,371 PointsCool. Many thanks for your help!