diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-02-12 19:50:55 +0100 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-02-12 19:50:55 +0100 |
commit | 24547ccec6526fcef3cccb34bc35fb81f31236b3 (patch) | |
tree | fc908fb06a6b8b4d4131c7303c4fb3b7d348f9bf /tpl/general | |
parent | cd76af42463bd80539db8c9671a427a9f0fe5d69 (diff) | |
download | Bits-24547ccec6526fcef3cccb34bc35fb81f31236b3.tar.gz Bits-24547ccec6526fcef3cccb34bc35fb81f31236b3.zip |
A lot of changes : blogging system essentially.
Diffstat (limited to 'tpl/general')
-rw-r--r-- | tpl/general/top.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tpl/general/top.php b/tpl/general/top.php index 2ddc84e..08481fd 100644 --- a/tpl/general/top.php +++ b/tpl/general/top.php @@ -29,16 +29,17 @@ if ($user['id'] == 0) { ?> </div> <div class="left"> - <a href="notes">Notebooks</a> + <a href="blog">Home</a> + <a href="list-account">People</a> <?php if ($user['id'] != 0) { - echo '<a href="image">Uploaded images</a><a href="study">My studies</a>'; + echo '<a href="study">My studies</a>'; + echo '<a href="image">Uploaded images</a>'; } else { + echo '<a href="study">Studies</a>'; if ($user['priv'] >= $apps['image']['upload']) { echo '<a href="upload-image">Upload image</a>'; } - echo '<a href="deck">Study decks</a>'; - echo '<a href="list">Study lists</a>'; } ?> </div> |