KDE.org/Neverland: Difference between revisions

From KDE Community Wiki
No edit summary
Line 3: Line 3:
== Introduction ==
== Introduction ==


We are currently working on a new design for KDE.org, projectname Neverland. On this page you can read about our research, ideas and progress.
KDE's Neverland is able to build full themes from a set of template files. The designer needs to only care about the css/js files and the correct nesting of the layout (html). Once satisfied, complete themes for any supported CMS can be outputted and then used accordingly. The project is based on node.js.


== Getting involved ==
== Installation ==


If you are interested in joining the webteam for the developement of Neverland, please join us at our IRC channel #kde-www. There are a variety of options to get involved. This includes:
=== Requirement ===
* Git
* NodeJs >= 6.0
* Basic understanding of [[Mustache|http://mustache.github.io/mustache.5.html]]


* WordPress
=== Installing Neverland ===
* Usability
Clone the repository:
* Design


<code>git clone git://anongit.kde.org/websites/neverland.git</code>


The needs steadily change, and there is always room for coders who are able to contribute HTML, CSS or PHP.
Cd to the <code>neverland</code> folder:


* IRC channel: #kde-www
<code>cd neverland</code>
* Mailinglist: [http://mail.kde.org/mailman/listinfo/kde-www kde-www] See http://kde.org/mailinglists/ for details
* Projectpage: [https://projects.kde.org/projects/websites/neverland Neverland Projectpage]
==Documentation for Neverland==


[[KDE.org/Neverland/Documentation]]
Switch to <code>gsoc</code> branch:


==Meetings==
<code>git checkout gsoc</code>


To be filled.
Install dependencies:


==The Team==
<code>npm install</code>


{| class="wikitable" border="1"
Install gulp globally:
 
<code>npm install gulp -g</code>
 
You can check if everything is ok by running:
 
<code>node neverland watch --theme neverland</code>
== Usage ==
To create a new theme, you can run:
<code>node neverland new your-theme-name</code>
 
Your new theme will appear under <code>blueprints</code> directory
 
To start building a theme, you can run:
 
<code>node neverland watch --theme your-theme-name</code>
 
or
 
<code>gulp watch --theme your-theme-name</code>
 
Currently you should keep your theme structure by default
 
Now you can code your theme normally.
 
To convert your html theme to wordpress or mediawiki theme, you need some additional works.
Every theme shares some same parts such as Navigation bar, Category links, Sidebar. In order to let Neverland understand where to transform these parts to corresponding cms part you need to some default Mustache tags.
 
<u>For example:</u>
 
You have your navbar like this:
 
<syntaxhighlight lang="html">
<ul class="header__categories">                                                                                                                             
    <li class="header__categories--item">                                                               
            <a href="#" class="header__categories--link">Work</a>                                           
    </li>                                                                                                   
    <li class="header__categories--item">                                                               
            <a href="#" class="header__categories--link">Portfolio</a>                                     
    </li>                                                                                                   
    <li class="header__categories--item">                                                               
            <a href="#" class="header__categories--link">About</a>                                         
    </li>                                                                                                                                                                                     
</ul>                                                                                                       
</syntaxhighlight>
 
You should insert the tags like this:
<syntaxhighlight lang="html">
<ul class="header__categories">                                                                             
{{#navbar__category}}                                                                                       
{{&navbar__category}}                                                                                       
    <li class="header__categories--item">                                                               
        <a href="{{&navbar__category--link}}" class="header__categories--link">{{&navbar__category--name}}</a>
    </li>                                                                                                   
{{&navbar__category--end}}                                                                                   
{{/navbar__category}}                                                                                       
{{^navbar__category}}                                                                                       
    <li class="header__categories--item">                                                               
        <a href="#" class="header__categories--link">Work</a>                                           
    </li>                                                                                                   
    <li class="header__categories--item">                                                               
        <a href="#" class="header__categories--link">Portfolio</a>                                       
    </li>                                                                                                   
    <li class="header__categories--item">                                                               
        <a href="#" class="header__categories--link">About</a>                                           
    </li>                                                                                                   
{{/navbar__category}}                                                                                       
</ul>
</syntaxhighlight>                                                                                                       
There are some key points here:
* Those tags using [[BEM|https://en.bem.info/]] methodology
* {{& }} is the same as {{{ }}} because Neverland uses [[this library|https://github.com/janl/mustache.js]]
* You should define both which part should be transform and default part
 
You can check for full tags in [[#Supported Tags]] section
 
Finally, you can output your theme to wordpress/mediawiki theme by running:
 
<code>node neverland build --theme your-theme-name</code>
 
Your theme will be placed under <code>buildings</code> directory
 
== Commands ==
node neverland [commands]
{| class="wikitable"
|-
|-
!width=25%| Name
| new <theme-name>
!width=20%| Nick
| Create new skeleton theme
!width=35%| Skills
! Main task
|-
|-
| Ingo Malchow
| delete --theme <theme-name>
| neverendingo
| Delete theme
| PHP, HTML, CSS, image creation/manipulation
| Adjusting look and feel of KDE sites
|-
|-
| Eugene Trounev
| themes
| it-s
| List existing theme
| Design/Layout, CG/Vectors, HTML5, CSS3, JS, Web 3.0
| Design
|-
|-
| Sayak Banerjee
| sass --theme <theme-name>
| sayakb
| Compile sass files
| PHP, Lots of JS, HTML, CSS, Graphics
| Migrating existing websites and designing new ones over Neverland, adding lots of JS love
|-
|-
| Hans Chen
| watch --theme <theme-name>
| Mogger
| Using gulp watch
| Complaining, design
| Testing
|-
| Mayank Madan
| mayankmadan
| PHP, Js, HTML, CSS
| Making the websites beautiful and also updating the wiki 
|-
|-
| build --theme <theme-name> --platform,-p <platform>
| Build theme for specific platform. If platform is ommited, Neverland will build for all supported platforms.
|}
|}


 
== Supported Tags ==
 
<syntaxhighlight>
.
article__link
article__title
article__thumbnail
article__time
article__author--link
article__author--name
article__content
article__category
article__category--end
article__category--link
article__category--name
navbar__category
navbar__category--link
navbar__category--name
navbar__category--end
</syntaxhighlight>
== Write a builder for other platforms ==
<small>will be updated</small>

Revision as of 16:43, 31 July 2016

Introduction

KDE's Neverland is able to build full themes from a set of template files. The designer needs to only care about the css/js files and the correct nesting of the layout (html). Once satisfied, complete themes for any supported CMS can be outputted and then used accordingly. The project is based on node.js.

Installation

Requirement

Installing Neverland

Clone the repository:

git clone git://anongit.kde.org/websites/neverland.git

Cd to the neverland folder:

cd neverland

Switch to gsoc branch:

git checkout gsoc

Install dependencies:

npm install

Install gulp globally:

npm install gulp -g

You can check if everything is ok by running:

node neverland watch --theme neverland

Usage

To create a new theme, you can run: node neverland new your-theme-name

Your new theme will appear under blueprints directory

To start building a theme, you can run:

node neverland watch --theme your-theme-name

or

gulp watch --theme your-theme-name

Currently you should keep your theme structure by default

Now you can code your theme normally.

To convert your html theme to wordpress or mediawiki theme, you need some additional works. Every theme shares some same parts such as Navigation bar, Category links, Sidebar. In order to let Neverland understand where to transform these parts to corresponding cms part you need to some default Mustache tags.

For example:

You have your navbar like this:

<ul class="header__categories">                                                                                                                              
    <li class="header__categories--item">                                                                
            <a href="#" class="header__categories--link">Work</a>                                            
    </li>                                                                                                     
    <li class="header__categories--item">                                                                
            <a href="#" class="header__categories--link">Portfolio</a>                                       
    </li>                                                                                                     
    <li class="header__categories--item">                                                                
            <a href="#" class="header__categories--link">About</a>                                           
    </li>                                                                                                                                                                                      
</ul>

You should insert the tags like this:

<ul class="header__categories">                                                                               
{{#navbar__category}}                                                                                         
{{&navbar__category}}                                                                                         
    <li class="header__categories--item">                                                                
        <a href="{{&navbar__category--link}}" class="header__categories--link">{{&navbar__category--name}}</a>
    </li>                                                                                                     
{{&navbar__category--end}}                                                                                    
{{/navbar__category}}                                                                                         
{{^navbar__category}}                                                                                         
    <li class="header__categories--item">                                                                
        <a href="#" class="header__categories--link">Work</a>                                            
    </li>                                                                                                     
    <li class="header__categories--item">                                                                 
        <a href="#" class="header__categories--link">Portfolio</a>                                        
    </li>                                                                                                     
    <li class="header__categories--item">                                                                
        <a href="#" class="header__categories--link">About</a>                                            
    </li>                                                                                                     
{{/navbar__category}}                                                                                         
</ul>

There are some key points here:

You can check for full tags in #Supported Tags section

Finally, you can output your theme to wordpress/mediawiki theme by running:

node neverland build --theme your-theme-name

Your theme will be placed under buildings directory

Commands

node neverland [commands]

new <theme-name> Create new skeleton theme
delete --theme <theme-name> Delete theme
themes List existing theme
sass --theme <theme-name> Compile sass files
watch --theme <theme-name> Using gulp watch
build --theme <theme-name> --platform,-p <platform> Build theme for specific platform. If platform is ommited, Neverland will build for all supported platforms.

Supported Tags

article__link
article__title
article__thumbnail
article__time
article__author--link
article__author--name
article__content
article__category
article__category--end
article__category--link
article__category--name
navbar__category
navbar__category--link
navbar__category--name
navbar__category--end

Write a builder for other platforms

will be updated