Skip to content

Commit

Permalink
Move language selector to top of sidebar.
Browse files Browse the repository at this point in the history
Due to the long list of themes, language
selector and feed list are way, way down
and can easily be overlooked. Move at
least the language selector up to the top.
(We could also cut the complete list of
themes in the sidebar.)

Signed-off-by: Thomas Hochstein <[email protected]>
  • Loading branch information
th-h committed Mar 23, 2020
1 parent 214e30c commit 1d9e4d3
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions homepage/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,33 +103,6 @@
<aside id="sidebar">
<h2>More info</h2>

<section id="spartacus-plugins" class="widget">
<h3>Plugins</h3>

<h4>Event</h4>

<ul class="spartacus-list">
<li><a href="index.php?mode=bygroups_event_<?php echo LANG; ?>">All Groups</a></li>
<?php echo str_replace('[LANG]', LANG, file_get_contents(BASEDIR . 'box_groups_event.htm')); ?>
</ul>

<h4>Sidebar</h4>

<ul class="spartacus-list">
<li><a href="index.php?mode=bygroups_sidebar_<?php echo LANG; ?>">All Groups</a></li>
<?php echo str_replace('[LANG]', LANG, file_get_contents(BASEDIR . 'box_groups_sidebar.htm')); ?>
</ul>
</section>

<section id="spartacus-themes" class="widget">
<h3>Themes</h3>

<ul class="spartacus-list">
<li><a href="index.php?mode=template_all">All Templates</a></li>
<?php echo file_get_contents(BASEDIR . 'box_groups_template.htm'); ?>
</ul>
</section>

<section id="spartacus-language" class="widget">
<h3>Change language</h3>

Expand Down Expand Up @@ -172,6 +145,33 @@
</form>
</section>

<section id="spartacus-plugins" class="widget">
<h3>Plugins</h3>

<h4>Event</h4>

<ul class="spartacus-list">
<li><a href="index.php?mode=bygroups_event_<?php echo LANG; ?>">All Groups</a></li>
<?php echo str_replace('[LANG]', LANG, file_get_contents(BASEDIR . 'box_groups_event.htm')); ?>
</ul>

<h4>Sidebar</h4>

<ul class="spartacus-list">
<li><a href="index.php?mode=bygroups_sidebar_<?php echo LANG; ?>">All Groups</a></li>
<?php echo str_replace('[LANG]', LANG, file_get_contents(BASEDIR . 'box_groups_sidebar.htm')); ?>
</ul>
</section>

<section id="spartacus-themes" class="widget">
<h3>Themes</h3>

<ul class="spartacus-list">
<li><a href="index.php?mode=template_all">All Templates</a></li>
<?php echo file_get_contents(BASEDIR . 'box_groups_template.htm'); ?>
</ul>
</section>

<section id="spartacus-feeds" class="widget">
<h3>Feeds</h3>

Expand Down

0 comments on commit 1d9e4d3

Please sign in to comment.