# 08. __Notices__

[![+Professional Support](https://www.totaljs.com/img/badge-support.svg)](https://www.totaljs.com/support/) [![+Chat with contributors](https://www.totaljs.com/img/badge-chat.svg)](https://messenger.totaljs.com)

Notices are in other words: shorted posts. Supports markdown syntax with Images, Links, Lists and with __bold__ + *italic* text format. Notices are rendered in the list of queried notices.

```javascript
var options = {};

// All filter options are defined in:
// Model: /models/notices.js

$QUERY('Notices', options, function(err, response) {

	// {Number} Count of items
	response.count;

	// {Array} Items
	response.items;
    
	// {Number} Items per page
	response.limit;

	// {Number} Count of pages
	response.pages;

	// {Number} Current page
	response.page;

});
```