# betterdocs/3.8.9/views/templates/contents/layout-1.php

BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ &amp; Chatbot, version 3.8.9. 28 lines.

- Page: https://pluginprobe.com/plugins/betterdocs/3.8.9/code/views/templates/contents/layout-1.php
- Raw: https://pluginprobe.com/plugins/betterdocs/3.8.9/raw/views/templates/contents/layout-1.php
- Modified: 2024-12-09T12:10:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/betterdocs/3.8.9/code/views/templates/contents/layout-1.php#L10-L20`.

```php
<?php $reading_text    = betterdocs()->settings->get( 'estimated_reading_time_text' );
$singular_reading_text = betterdocs()->settings->get( 'singular_estimated_reading_time_text' );
$reading_title         = betterdocs()->settings->get( 'estimated_reading_time_title' ); ?>
<?php echo betterdocs()->settings->get( 'enable_estimated_reading_time' ) ? do_shortcode( '[betterdocs_reading_time singular_reading_text="' . $singular_reading_text . '" reading_text="' . $reading_text . '" reading_title="' . $reading_title . '"]' ) : ''; ?>
<div class="betterdocs-entry-content">
	<?php
		/**
		 * Print Icon
		 */
		$view_object->get(
			'templates/parts/print-icon',
			[
				'enable' => betterdocs()->settings->get( 'enable_print_icon', false )
			]
		);

		/**
		 * TOC
		 */
		$view_object->get( 'templates/parts/toc' );

		/**
		 * Content
		 */
		$view_object->get( 'templates/parts/content' );
		?>
</div>

```
