diff --git a/_data/pkgs/cobalt-bin.json b/_data/pkgs/cobalt-bin.json new file mode 100644 index 00000000..93a5f95d --- /dev/null +++ b/_data/pkgs/cobalt-bin.json @@ -0,0 +1 @@ +{"crate":{"created_at":"2016-06-25T13:10:18Z","description":"Static site generator written in Rust","documentation":null,"downloads":448,"homepage":null,"id":"cobalt-bin","keywords":["generator","site","static"],"license":"MIT","links":{"owners":"/api/v1/crates/cobalt-bin/owners","reverse_dependencies":"/api/v1/crates/cobalt-bin/reverse_dependencies","version_downloads":"/api/v1/crates/cobalt-bin/downloads","versions":null},"max_version":"0.4.0","name":"cobalt-bin","repository":"https://github.com/cobalt-org/cobalt.rs","updated_at":"2016-11-13T09:56:08Z","versions":[37765,37764,29647,29158]},"keywords":[{"crates_cnt":28,"created_at":"2015-02-01T16:29:23Z","id":"generator","keyword":"generator"},{"crates_cnt":2,"created_at":"2016-06-25T13:10:18Z","id":"site","keyword":"site"},{"crates_cnt":13,"created_at":"2014-11-23T01:30:03Z","id":"static","keyword":"static"}],"versions":[{"crate":"cobalt-bin","created_at":"2016-11-13T09:56:08Z","dl_path":"/api/v1/crates/cobalt-bin/0.4.0/download","downloads":34,"features":{"dev":[],"unstable":[]},"id":37765,"links":{"authors":"/api/v1/crates/cobalt-bin/0.4.0/authors","dependencies":"/api/v1/crates/cobalt-bin/0.4.0/dependencies","version_downloads":"/api/v1/crates/cobalt-bin/0.4.0/downloads"},"num":"0.4.0","updated_at":"2016-11-13T09:56:08Z","yanked":false},{"crate":"cobalt-bin","created_at":"2016-11-13T09:39:43Z","dl_path":"/api/v1/crates/cobalt-bin/0.4.0-beta/download","downloads":5,"features":{"dev":[],"unstable":[]},"id":37764,"links":{"authors":"/api/v1/crates/cobalt-bin/0.4.0-beta/authors","dependencies":"/api/v1/crates/cobalt-bin/0.4.0-beta/dependencies","version_downloads":"/api/v1/crates/cobalt-bin/0.4.0-beta/downloads"},"num":"0.4.0-beta","updated_at":"2016-11-13T09:39:43Z","yanked":false},{"crate":"cobalt-bin","created_at":"2016-07-06T16:26:29Z","dl_path":"/api/v1/crates/cobalt-bin/0.3.0/download","downloads":366,"features":{"unstable":[]},"id":29647,"links":{"authors":"/api/v1/crates/cobalt-bin/0.3.0/authors","dependencies":"/api/v1/crates/cobalt-bin/0.3.0/dependencies","version_downloads":"/api/v1/crates/cobalt-bin/0.3.0/downloads"},"num":"0.3.0","updated_at":"2016-07-06T16:26:29Z","yanked":false},{"crate":"cobalt-bin","created_at":"2016-06-25T13:10:18Z","dl_path":"/api/v1/crates/cobalt-bin/0.2.0/download","downloads":43,"features":{"unstable":[]},"id":29158,"links":{"authors":"/api/v1/crates/cobalt-bin/0.2.0/authors","dependencies":"/api/v1/crates/cobalt-bin/0.2.0/dependencies","version_downloads":"/api/v1/crates/cobalt-bin/0.2.0/downloads"},"num":"0.2.0","updated_at":"2016-06-25T13:10:18Z","yanked":false}]} \ No newline at end of file diff --git a/assets/styles.css b/assets/styles.css index 1f466e89..bad5d856 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -181,6 +181,30 @@ ul.legend li { } +ul.upcoming { + margin: 0; + padding: 0; + list-style: none; +} + +ul.upcoming li { + display: inline; + margin: 0; + padding: 0; +} +ul.upcoming li p { + display: inline; +} +ul.upcoming li:not(:last-of-type):after { + display: inline; + content: " ,"; +} +ul.upcoming li:last-of-type:after { + display: inline; + content: "."; +} + + .level-indicator { font-weight: 300; font-size: 0.65em; diff --git a/topics/cms.md b/topics/cms.md new file mode 100644 index 00000000..b01aa3db --- /dev/null +++ b/topics/cms.md @@ -0,0 +1,20 @@ +--- +layout: topic +title: "Content Management Systems" + +intro: Basic pages and compiling source content into full websites to be served are one of the fundamental features of the web as we have it today. On this page we cover helpers and projects that aim to lower the workfload on getting this specifc aspect done. + +level: 4 +packages: + - cobalt-bin + +upcoming: + - name: lightning-rs + url: https://github.com/chriskrycho/lightning-rs + desc: Yet another static site generator + - name: iron-cms + url: https://github.com/mrLSD/iron-cms + desc: a CMS for iron + +news_tag: cms +---