pixlsus / website

The PIXLS.US website

Home Page:https://pixls.us

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove/clean up any unnecessary files!

paperdigits opened this issue · comments

commented

@patdavid When you find a free minute, if you would please remove any files that you know can safely be removed, that'd be a big help in trying to consolidate the templates.

Without digging too deep, some suggested files to remove would be:

/templates/test.hbt
/templates/article.hbt.old
build-gitlab.js (I don't know what this does, but it is very similar to index.js)

Will do!

The build-gitlab.js was for building on the runners at gitlab (using .gitlab-ci.yml).
It's redundant here I think, and should be removed (along with .gitlab-ci.yml).

I'll start cleaning stuff out as I go through the files again. :)

commented

Awesome, thanks!

I'd like to clean and combine to a point where:

  • there are a handful of meaningful templates
  • we are not repeating the head and meta elements all over the place
  • merge all style.css files into larger, more meaningful stylesheets
  • start using Sass if that's OK with you.

This things should make contributing to the site much easier for people who have never see the code and easier to maintain going forward.

On June 7, 2016 8:37:59 AM PDT, Pat David notifications@github.com wrote:

The build-gitlab.js was for building on the runners at gitlab (using
.gitlab-ci.yml).
It's redundant here I think, and should be removed (along with
.gitlab-ci.yml).

I'll start cleaning stuff out as I go through the files again. :)


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#10 (comment)

commented

A reminder to myself to check the follwoing files located in the src directory:

./articles/hdr-photography-with-free-software-luminancehdr/index.css
./articles/digital-b-w-conversion-gimp/index.css
./articles/luminosity masking in darktable/index.css
./articles/basic-landscape-exposure-blending-with-gimp-and-g-mic/index.css
./articles/users-guide-to-high-bit-depth-gimp-2-9-2-part-1/index.css
./articles/basic-color-curves/index.css
./articles/skin retouching with wavelet decompose/index.css
./articles/freaky-details-calvin-hollywood/index.css
./articles/color-curves-matching/index.css
./articles/users-guide-to-high-bit-depth-gimp-2-9-2-part-2/index.css
./articles/a-q-a-with-photographer-riley-brandt/index.css
./articles/an open source portrait mairi/index.css
./articles/a blended panorama with photoflow/index.css
./blog/posts/2015-07-22 FOSS Photo Course Winners/index.css
./blog/posts/2015-06-05 Usertesting/index.css
./blog/posts/2015-07-13 darktable Windows/index.css
./blog/posts/2015-06-06 PhotoFlow Blended Panorama/index.css
./blog/posts/2015-07-13 Riley Brandt/index.css

Edit: Looks like the index.css files in blog are not loaded at all.

Those are for loading any local CSS that might be wanted for those particular posts. I suppose we could include the stylesheet in the markdown as well, but I started it this way to keep the markdown at least a little cleaner. :)

commented

Why not just write it in the main stylesheet?

On June 8, 2016 4:16:20 PM PDT, Pat David notifications@github.com wrote:

Those are for loading any local CSS that might be wanted for those
particular posts. I suppose we could include the stylesheet in the
markdown as well, but I started it this way to keep the markdown at
least a little cleaner. :)


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#10 (comment)

Usually because it may be one-off styles just for that post for some reason, and I didn't want to pollute other posts with them.

commented

Fair enough. Is that for articles, blog, or articles & blog?

On June 8, 2016 4:45:27 PM PDT, Pat David notifications@github.com wrote:

Usually because it may be one-off styles just for that post for some
reason, and I didn't want to pollute other posts with them.


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#10 (comment)

I think I had originally intended for it to be articles + blogposts. I realize they're hardly used... :)

commented

We could do clever solution, like adding the value of the post's slug as a class to the main element wrapping the post's article, that way you could just add .some-blog-slug-value to the style sheet, then style away.

Does this now move to the #32 thread on refactoring the styles.scss?

commented

Yes indeed it does!