Code Monkey home page Code Monkey logo

less's Introduction

Less

A simple minimal WordPress theme built with only what is needed to survive

Less screenshot

Less is a super minimal theme, both front end and back end. adding no bloat whatesover. It only uses the minimum requirements that WordPress has, a stylesheet, screenshot and the index page.

I did use LESS (http://lesscss.org/) for all the styles, if you know how to use it you will be able to change a few viarables to customize the site with no problem!

We also used JSLint'ed JavaScript to make sure it's the squeky-cleanest JavaScript your brain can imagine. It's also minified using JSMin so it's small, but if you like reading minified JavaScript, then this is just for you.

Finally, the theme has been localized so if you dislike English or want to read these posts in another language, you can translate it!

Code Screenshot

less's People

Contributors

alliswell avatar marcocampos avatar peteschuster avatar tommcfarlin avatar vjousse avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

less's Issues

Update Gravatar logo?

Hi,

I've updated my Gravatar logo, but it doesn't seem to be updating on my blog. Is there a way to force it to update?

Thanks.

The .font-size mixin is broken.

The .font-size mixin (style.less, line 552) looks like this:

.font-size(@size){
    @rem-value: (@size / 10);
    @px-value: @size;
    @lineHeight: (@size * 1.48);
    line-height: @lineHeight+0px;
    font-size: ~"@{px-value}px"; 
    font-size: ~"@{rem-value}rem";
}

which, when compiled, causes the last two lines to look like this:

font-size: 10pxpx; 
font-size: 10pxrem;

because the @size being passed in contains a 'px'. It should be written this way:

.font-size(@size){
    @rem-value: (@size / 10);
    @px-value: @size;
    @lineHeight: (@size * 1.48);
    line-height: @lineHeight;
    font-size: unit(@px-value,px);
    font-size: unit(@rem-value,rem);
}

Captcha don't appear

Hi,

when I enable Less theme and turn on Google Captcha (reCAPTCHA) plugin at my site - captcha is not diplayed although is working..

If I change theme to default - it works.

Jekyll maybe?

@alliswell I was just wondering If you would like to have a Jekyll version of this theme. I would personally like to, and I might be able to figure it, was just wondering if you would too?

no breaks/P on the_excerpt

Im not getting line breaks/P tags on the_excerpt but it works ok when viewing single post/page

Any idea ?

Emoticons

Right now they are not styled and appear massive.
screen shot 2013-05-17 at 12 17 46 pm

optional search & list of posts?

awesome clean theme optimized for readability. thanks for that. just wondering if there is a quick way to enable some sort of navigation and search function? thanks again.

Fresh install misses dependency tslib

After installing with $ npm install -g less I get the following error:

internal/modules/cjs/loader.js:626
    throw err;
    ^

Error: Cannot find module 'tslib'
Require stack:
- /Users/johannes/.npm-global/lib/node_modules/less/bin/lessc
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:623:15)
    at Function.Module._load (internal/modules/cjs/loader.js:527:27)
    at Module.require (internal/modules/cjs/loader.js:681:19)
    at require (internal/modules/cjs/helpers.js:16:16)
    at Object.<anonymous> (/Users/johannes/.npm-global/lib/node_modules/less/bin/lessc:9:13)
    at Module._compile (internal/modules/cjs/loader.js:774:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:785:10)
    at Module.load (internal/modules/cjs/loader.js:641:32)
    at Function.Module._load (internal/modules/cjs/loader.js:556:12)
    at Function.Module.runMain (internal/modules/cjs/loader.js:837:10) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [ '/Users/johannes/.npm-global/lib/node_modules/less/bin/lessc' ]

Installing $ npm install -g tslib lessc runs fine, $ lessc --version > 3.11.0

Add default 404 page

Great minimal theme, love working with it! Just want to point out that it would be good to have a default 404 page, since incorrect links just go to a blank page with header+footer. I could add a simple 404 page and submit a PR if you want.

header image/question

Hi!
Thanks for the theme! I am a rookie at CSS. I was wondering is it possible to put a header image, fixed width etc., on all pages through CSS?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.