Cant See Article Content

Hey I saved a article and tried to watch it in the Article View
But I dont see the Text.
I only can see the Title
Thats the code I used:

						<h2><span><?= $page->title()->html() ?></span></h2>
						<div class="content-padding">

							<div class="article-full">

								<div class="article-icons">
									<a href="user-single.html" class="user-tooltip"><i class="fa fa-fire"></i>datcouch</a>
									<a href="#"><i class="fa fa-calendar"></i>September 11, 2012</a>
									<a href="#" class="show-likes"><i class="fa fa-heart"></i>20 likes</a>
								</div>
							
								<div class="clear-float do-the-split"></div>

								<div class="article-content">
								<?= $page->text()->kirbytext() ?>
								    <a href="<?= url('blog') ?>">Back…</a>
								</div>
							</div>
							</div>

This is my YML:

    title: Article

pages: false

fields:
  title:
    label: Title
    type:  title




  coverimage:
    label: Cover Image
    required: true
    type: image
    width: 1/2
    
  date:
    icon: calendar
    label: Date
    type: date
    format: LL
    placeholder: Select a date…
    default: today
    required: true
    width: 1/2

  Text:
    label: Text
    type: textarea
    
  tags:
    label: Tags
    type: tags

Have you checked. your. source code in dev tools?

Is debugging enabled in your config.php file?

Yes. No Error Code related to this.

And the text doesn’t. appear in the source. code either? So it really. stops after the H2 tag? no divs afterwards? None of the hardcoded stuff?

Is caching enabled? Have you cleared. the cache?

No the text doesnt appear in the Source code. And it doesnt stop after the h2 Tag. It shows everything expect the stuff which should be generated through
<?= $page->text()->kirbytext() ?>

Caching is disabled also cleared cache to ensure it wasnt the issue.

The next line gets executed again ( back Link)

I enabled Languages in the config. does this might cause the issue?

here you can see it on your own

Have you renamed the text files to include the language code? You probably have a stray. text file.without language code in. your folder which must be removed.

I checked every file in the content folder. All are named like: NAME.de.txt or NAME.en.txt

What the… ?
I removed all the text from the text area and wrote something new. and the text appeared o.o