I am using the Blog package to eval and learn Grav.
I have figured out that the items in the right sidebar are mostly plugins and they are located in the user/plugins folder.
However, I do not see a plugin called Some Text Widget or anything like that. Yet it is displayed in the sidebar.
I figured out the sidebar has a template called sidebar.html.twig
in:
/home2/cymation/public_html/gravtest/user/themes/antimatter/templates/ partials
In this template the title of the Text widget is displayed through:
<h4>{{ 'SIDEBAR.SOME_TEXT_WIDGET.HEADLINE'|t }}</h4>
Yet the text of the widget is hard coded:
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna nob.</p>
</div>
So I have the following questions:
Is the Text widget a plugin?
If so, where is the plugin located? Does not seem to be in the plugin folder..
The title must be entered somewhere else if it is displayed thru:
<h4>{{ 'SIDEBAR.SOME_TEXT_WIDGET.HEADLINE'|t }}</h4>
but where?
Why would this widget have a setting somewhere for the Title but the body text has to be hardcoded?