Workflows & Enumerations ======================== Blog workflow ------------------------ This is the blog workflow. It tracks the deployment and uptime status of a blog. .. image:: ../docs/workflows/workflow_blog.png :width: 53em Blog Indexation workflow ------------------------ We track the indexation status of every blog in a separate workflow. This diagram shows the possible states and transitions between them. .. image:: ../docs/workflows/workflow_blog_indexation.png :width: 33em .. _wp-plugins: Available WP Plugins -------------------- Plugins: .. exec:: import json from ebn.const import WordPressPlugins for plugin in WordPressPlugins: print('- **{}** {}\n'.format(plugin.name, plugin.title)) .. _wp-themes: Available WP Themes ------------------- Themes: .. exec:: import json from ebn.const import WordPressThemes del WordPressThemes[0] # random theme for theme in WordPressThemes: print('- **{}** {}\n'.format(theme.name, theme.title))