All Projects → nekudo → shiny_blog

nekudo / shiny_blog

Licence: MIT license
A lightweight, markdown based Blog/CMS application written in PHP

Programming Languages

PHP
23972 projects - #3 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to shiny blog

ios-application
A native, lightweight and secure one-time-password (OTP) client built for iOS; Raivo OTP!
Stars: ✭ 581 (+4050%)
Mutual labels:  lightweight
ColdStorage
Lightweight data loading and caching library for android
Stars: ✭ 39 (+178.57%)
Mutual labels:  lightweight
UnityHFSM
A simple yet powerful class based hierarchical finite state machine for Unity3D
Stars: ✭ 243 (+1635.71%)
Mutual labels:  lightweight
tiny-skeleton-loader-react
zero dependency, ultra lightweight (1KB gzipped) skeleton loader component for react 🐥
Stars: ✭ 28 (+100%)
Mutual labels:  lightweight
lxroot
A lightweight, flexible, and safer alternative to chroot and/or Docker.
Stars: ✭ 69 (+392.86%)
Mutual labels:  lightweight
beercss
Build material design interfaces in record time... without stress for devs... 🍺💛
Stars: ✭ 223 (+1492.86%)
Mutual labels:  lightweight
today-web
😐 A Java library for building web applications
Stars: ✭ 33 (+135.71%)
Mutual labels:  lightweight
LIGHT-SERNET
Light-SERNet: A lightweight fully convolutional neural network for speech emotion recognition
Stars: ✭ 20 (+42.86%)
Mutual labels:  lightweight
k3s-on-prem-production
Playbooks needed to set up an on-premises K3s cluster and securize it
Stars: ✭ 108 (+671.43%)
Mutual labels:  lightweight
kcs
Scripting in C with JIT(x64)/VM.
Stars: ✭ 25 (+78.57%)
Mutual labels:  lightweight
docker-alpine-wkhtmltopdf
wkhtmltopdf alpine docker container with headless qt patches
Stars: ✭ 150 (+971.43%)
Mutual labels:  lightweight
dicomweb-pacs
Easy to use DICOMWEB enabled PACS with DIMSE services based on sqlite database
Stars: ✭ 42 (+200%)
Mutual labels:  lightweight
goof
Go Offer File - Easily serve files and directories over a network; a Golang implementation of `woof`.
Stars: ✭ 24 (+71.43%)
Mutual labels:  lightweight
Tasks
Tasks is an application that optimizes computer performance. Tasks improves overall system performance, boot times, and a safer experience while using your computer.
Stars: ✭ 65 (+364.29%)
Mutual labels:  lightweight
NanoLimbo
The lightweight, high performance Minecraft limbo server
Stars: ✭ 94 (+571.43%)
Mutual labels:  lightweight
CIBYL
Lightweight curly-bracket language which compiles to Ruby and Crystal.
Stars: ✭ 45 (+221.43%)
Mutual labels:  lightweight
kula
Lightweight and highly extensible .NET scripting language.
Stars: ✭ 43 (+207.14%)
Mutual labels:  lightweight
webgui
Web Technologies based Crossplatform GUI Framework with Dark theme
Stars: ✭ 81 (+478.57%)
Mutual labels:  lightweight
RxSwiftMVVM
RxSwift MVVM Moya HandyJSON
Stars: ✭ 58 (+314.29%)
Mutual labels:  lightweight
ElegantRL
Scalable and Elastic Deep Reinforcement Learning Using PyTorch. Please star. 🔥
Stars: ✭ 2,074 (+14714.29%)
Mutual labels:  lightweight

Discontinued

ShinyBlog has been moved to the bloatless.org project. Check out: https://github.com/bloatless/blog

ShinyBlog

A simple, lightweight and easy to use Blog/CMS application.

ShinyBlog is a very simple and easy to understand Blog/CMS solution. Create new blog-articles by just uploading a markdown file to your server. No overhead. This project was build with simplicity in mind. I tried to use as little dependencies as possible and keep the code as clean as possible to build a lightweight alternative to all the bloatware out there.

Features

  • Markdown based: Article and page contents can be written using markdown or markdown-extra syntax.
  • Theme support: Create your own theme to adjust the layout of your website.
  • Category support: Blog articles can be sorted into various categories.
  • RSS feeds: Separate RSS feeds for all articles and article-categories are available.
  • Pagination: Set how many articles you want to show per page.
  • Basic SEO support: Title-Tags,Meta-Description, and index/follow stuff can be adjusted via config-file.
  • XML sitemap: Sitemap of all articles and pages is automatically generated.
  • Excerpts: Using a read-more tag in your articles you can define the excerpt to appear on the blog-page.
  • Clean Code: Well documented, PSR-0 and PSR-2 compatible PHP code.

Demo

My website nekudo.com is based on this application so you can consider it a demo.

Installation

Requirements

  • PHP >= 7.0
  • PHP Modules DOM, SimpleXML, XML and MBSTRING

On Debian e.g. installing php7.0 php7.0-xml php7.0-mbstring should suffice.

Installation procedure

  1. Clone or download repository to your server.
  2. Rename /src/config.sample.php to /src/config.php.

How to use

Adjusting configuration

The first step you should do after installation is to adjust the config file. This file holds all information about urls, meta-tags e.g. and should be adjusted to your requirements.

The configuration file can be found in: /src/config.php

Adding contents

To add new contents you just need to place a new markdown file into the /contents/articles or /contents/pages pages folder. New articles will automatically show up in the blog. New pages also need a new route to be defined in the config file.

Every content file needs a meta-block and a content-block separated by the followin code:

::METAEND::

An article e.g. look like this:

{
  "title":"Hello World!",
  "metaTitle": "Hello World!",
  "description": "Hello Word. A ShinyBlog dummy blog article.",
  "date" : "2016-01-23",
  "slug" : "hello-world",
  "author" : "Simon", 
  "categories":"News"
}

::METAEND::

Sit by the fire. Wake up human for food at 4am chase dog then...

Please see the dummy markdown files for a more detailed example.

Styling

All the layout is done by the theme. Themes live in the /themes folder.

The best practice to adjust the stying is to copy the kiss theme into your own folder and than adjust it to whatever you like. Don't forget to set the config to use you newly created theme!

Local testing

From your shiny_blog-folder (the one containing index.php) run:

php -S localhost:8000

Point your browser to http://localhost:8000

Thanks to / Libs used

License

The MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].