Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add headings for slides #852

Merged
merged 2 commits into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ export default {
.content {
padding: 20px;
width: 100%;
> h2 {
text-align: center;
}
}
p {
margin-bottom: 20px;
Expand Down Expand Up @@ -218,7 +221,7 @@ export default {
font-size: 14px;
}
}
.content-final {
.page-final {
h3 {
background-position: 0;
background-size: 16px 16px;
Expand Down Expand Up @@ -324,7 +327,7 @@ export default {
}
}

&.content-final {
&.page-final {
padding-bottom: 50px;
}
}
Expand Down
3 changes: 3 additions & 0 deletions templates/page.apps.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
*/
?>
<div class="page" data-title="<?php p($l->t('Extend your cloud')); ?>" data-subtitle="">
<div class="content content-apps">
<h2><?php p($l->t('Extend your cloud')); ?></h2>
</div>
<div class="image"><img src="<?php p(image_path('firstrunwizard', 'appstore.svg')); ?>" /></div>
<div class="description">
<p><?php p($l->t('Find more than 100 apps in the Nextcloud App Store to customize your cloud:')); ?></p>
Expand Down
1 change: 1 addition & 0 deletions templates/page.clients.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

<div class="page" data-title="<?php p($l->t('Stay in sync')); ?>" data-subtitle="">
<div class="content content-clients">
<h2><?php p($l->t('Stay in sync')); ?></h2>
<p><?php p($l->t('Nextcloud gives you access to your files wherever you are.')); ?><br />
<?php p($l->t('Our easy to use desktop and mobile clients are available for all major platforms at zero cost!')); ?></p>
<div class="description-block">
Expand Down
5 changes: 4 additions & 1 deletion templates/page.final.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
*/
?>

<div class="page content-final" data-title="<?php p($l->t('Get help')); ?>" data-subtitle="">
<div class="page page-final" data-title="<?php p($l->t('Get support or participate')); ?>" data-subtitle="">
<div class="content content-final">
<h2><?php p($l->t('Get support or participate')); ?></h2>
</div>
<div class="description">
<div class="description-block">
<h3 class="icon-user"><?php p($l->t('Start contributing')); ?></h3>
Expand Down
1 change: 1 addition & 0 deletions templates/page.values.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

<div class="page" data-title="<?php p($l->t('A safe home for all your data')); ?>" data-subtitle="">
<div class="content content-values">
<h2><?php p($l->t('Our values')); ?></h2>
<p>
<?php p($l->t('Nextcloud puts your data at your fingertips, under your control. Store your documents, calendar, contacts and photos on a server in your company, at home, at one of our providers or in a data center you know.')); ?>
</p>
Expand Down