Built with Drupal 8: A Front-Ender's Tale of Danger and Suspense

Error message

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls in menu_set_active_trail() (line 2405 of /home1/markspap/public_html/kathy/includes/menu.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/markspap/public_html/kathy/includes/common.inc).
May 3, 2015

UPDATE: In August 2015 I moved this site back to Drupal 7. Drupal 8 is still in beta, and though it's going to be fun, it's obviously not ready for prime time yet.

A few weeks ago I decided to rebuild this blog from scratch.  It had been literally years since I'd posted, so I figured I'd include just a few of the last entries.  Also, Drupal 8 was in beta and I'm impatient.  Why not build a brand new site in 8.0.0-beta9?, I thought.   How hard could it be?

So, okay.  It was a little bit hard.  But surprisingly, the experience wasn’t as hairy as you might expect.  Here’s a summary of my adventurous, experimental walk on the wild beta side. 

Installing Drupal 8

Before I go further, I should mention that I installed Drupal 8 on a previously set up local environment.  (If you don’t know what that means, you can find out more here.   For fellow Mac users, I’d recommend these instructions.)

Honestly, installation was a breeze.  The whole process took less than 5 minutes and was similar enough to Drupal 7 that I felt on solid ground.  I just downloaded and untarred core, added a new database in Mamp, went to the site in my browser and followed the instructions.  Easy peasy.

Playing with core was equally as uneventful and fun.  I added a new user, enabled and disabled core modules, added a new content type and a taxonomy vocabulary, tweaked permissions, etc.  All without a hitch.  The admin interface looks and acts almost the same as D7's. For someone who builds a lot of sites for non-technical admins, this is a big relief.

I decided this was easy.  Drupal 8 was a lot more stable than I’d expected.  I was feeling confident, so I decided to try creating a custom theme.

Custom Theming: Take One

Considering D8’s not even released yet, the documentation on drupal.org on Theming Drupal 8 is pretty extensive.  In fact it’s so extensive, it’s a bit overwhelming at first. 

If you're familiar with D7 theming and just wanted to get up and running quickly, you might prefer 27 Questions (and Answers) from My First Drupal 8 Site Build by Matt Korostoff.  His article was extremely helpful, although I was glad to be have the d.o documentation to refer to when I got stuck or wanted to delve into something more deeply.

Adding JS, CSS and Font Files and Libraries

I decided to keep a hand on the tow line and created a Classy subtheme, following Matt’s instructions for setting up the x.info.yml and and x.libraries.yml files.

You can see the .info.yml file looks a lot like the .info in Drupal 7.  The main difference is the way CSS and JS are added.  Instead of adding them directly to the .info.yml file, you include a reference to a .libaries.yml file, and that is where you add your scripts, stylesheets and dependencies. That was probably the biggest gotcha for me--figuring out how to include JS scripts, libraries and dependencies and font libraries.  There was conflicting information on the webs, but this is what worked for me:

Because I had a number of CSS and JS files, I followed the advice (from d.o. maybe?) to break them into two groups—global-styling and global-scripts,. These will now be available to every page.

My scripts.js is actually just a teeny few lines to handle the navigation bar, but surprisingly, Drupal 8 doesn’t load JQuery on every page automatically like D7 did. You have to add it as a dependency, as well as any other js you want to run on every page.

One thing I never figured out was how to add my custom fonts. I use Google's PT Serif and Inconsolata in this theme, and the only way I could get the fonts to load was by adding an @import to my main CSS file:

@import url(http://fonts.googleapis.com/css?family=Inconsolata|PT+Serif:400,400italic,700,700italic);

It works, and that'll have to do for now.

Twig Templates

I find Twig to be easier and more intuitive than the PHP of previous .tpl.php files. If you don't agree, some of the documentation on d.o might be helpful, especially Twig Coding Standards.

The Classy theme was a godsend for me when it came to creating custom templates. Whether you create a subtheme of Classy or not, you can look at the slew of templates it includes to get an idea of how to create your own.

For this theme, I needed a custom block--search-form-block.html.twig and changes to page.html.twig and node.html.twig. For instance, like Matt Korostoff, I don't much like the default "submitted by" line. To tweak it, I copied the node.html.twig from Classy, plopped it in my theme's template folder, and changed the line:

I still haven't figured out how to get my custom date/time format to print, but I'll keep working on it. :)

Custom Modules and More

I enabled a few contrib modules (Prepopulate, Youtube Field, Captcha and Recaptcha) that were absolutely required before going live. All worked beautifully out-of-the-box. However, the other contrib modules I tried gave me either a WSOD or that ghastly pink error message.  

At this time I'd recommend enabling contrib modules cautiously, if at all.  Most are still in dev for a reason.  Maybe try them on a test install first and see what blows up.

Luckily this is a simple site that can run without many contrib modules. If you have a complex site that requires a number of them, you may have to wait a bit before they're all ported to 8. Bluespark publishes a helpful live list of the current status of the top 100 Drupal modules. Check it out to see if your modules are listed.

I'm know you're waiting on tenterhooks for your favorite modules, but remember that most of the people who create and maintain contrib modules do so on their own time and without pay.  That's pretty darn generous of them, and I'm grateful for all the vacation time and off hours they spend creating modules that make my life easier. Unless I'm able to jump in alongside and start slinging code, I'm happy to wait patiently for contrib modules to be ported.

(Note to self: Patience you must have, my young padawan.)

Conclusion

The (sort of) bad news: Not everyone is crazy enough to spend two days and nights building a D8 site. It still isn't easy. You may get discouraged.  You will lose sleep. I still can't get drush 7 (required for D8) to rebuild caches. Importing and exporting a database between dev and live without at least a few WSODs is nigh on impossible. I encountered a number of alien requirements and strange error messages that took time to track down and debug.

The good news: Smarter people than me are working on those problems. Yay!

More good news: I'm no longer afraid of WSODs or error screens that fill three screens. Also, I busted my local dev site and had to rebuild it so many times, I now know a great deal about installing, enabling and configuring Drupal 8.

Was it worth it? You betcha! I'm no programmer, so I was nervous about Drupal 8 coming down the pike. I'm not nervous anymore. In fact, I'm looking forward eagerly to a release candidate.

Thanks to all the people who put so much time and effort into Drupal 8. It's really spectacular, and we thank you for generously sharing your code with us.

Comments

I was suggested this website by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my problem. You're incredible! Thanks!

Today, I went to the beachfront with my kids. I found a sea shell and gave it to my 4 year old daughter and said "You can hear the ocean if you put this to your ear." She placed the shell to her ear and screamed. There was a hermit crab inside and it pinched her ear. She never wants to go back! LoL I know this is completely off topic but I had to tell someone!

Thank you for the good writeup. It actually was once a amusement account it. Glance complex to more introduced agreeable from you! By the way, how can we be in contact?

We're a gaggle of volunteers and starting a brand new scheme in our community. Your site provided us with helpful information to work on. You have performed a formidable task and our whole group can be thankful to you.

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

I do not even know how I ended up here, but I thought this post was good. I don't know who you are but definitely you are going to a famous blogger if you are not already ;) Cheers!

I was suggested this website by means of my cousin. I am now not sure whether or not this post is written by means of him as no one else recognize such special about my problem. You are wonderful! Thank you!

Hello would you mind letting me know which web host you're working with? I've loaded your blog in 3 different browsers and I must say this blog loads a lot quicker then most. Can you suggest a good web hosting provider at a reasonable price? Kudos, I appreciate it!

Terrific work! This is the type of information that should be shared across the web. Shame on Google for now not positioning this submit higher! Come on over and talk over with my web site . Thank you =)

Highly energetic post, I loved that a lot. Will there be a part 2?

Nice post. I learn something totally new and challenging on blogs I stumbleupon everyday. It will always be exciting to read articles from other writers and use something from other websites.

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

Pretty great post. I just stumbled upon your blog and wished to say that I've truly loved browsing your blog posts. In any case I'll be subscribing to your feed and I am hoping you write once more soon!

After checking out a handful of the blog articles on your site, I seriously like your technique of writing a blog. I saved as a favorite it to my bookmark website list and will be checking back soon. Take a look at my website as well and tell me how you feel.

Nice post. I learn something totally new and challenging on blogs I stumbleupon every day. It's always interesting to read articles from other writers and use something from their sites.

Hi there colleagues, its enormous piece of writing concerning cultureand entirely defined, keep it up all the time.

Good way of telling, and nice post to obtain information about my presentation subject matter, which i am going to convey in institution of higher education.

I think this is among the most vital info for me. And i am glad reading your article. But wanna remark on some general things, The web site style is ideal, the articles is really excellent : D. Good job, cheers

If some one needs expert view about blogging and site-building afterward i suggest him/her to visit this blog, Keep up the pleasant work.

Everything is very open with a very clear clarification of the issues. It was definitely informative. Your site is very useful. Many thanks for sharing!

I am really enjoying the theme/design of your web site. Do you ever run into any web browser compatibility issues? A couple of my blog audience have complained about my blog not operating correctly in Explorer but looks great in Opera. Do you have any recommendations to help fix this issue?

I constantly spent my half an hour to read this web site's content every day along with a cup of coffee.

Great beat ! I wish to apprentice at the same time as you amend your web site, how could i subscribe for a weblog web site? The account aided me a acceptable deal. I have been tiny bit acquainted of this your broadcast offered shiny transparent concept

With havin so much written content do you ever run into any issues of plagorism or copyright infringement? My website has a lot of unique content I've either created myself or outsourced but it looks like a lot of it is popping it up all over the web without my permission. Do you know any techniques to help prevent content from being stolen? I'd definitely appreciate it.

Hi there, I found your website by the use of Google at the same time as searching for a comparable subject, your web site got here up, it appears to be like great. I have bookmarked it in my google bookmarks.
Hi there, simply turned into aware of your blog via Google, and found that it's truly informative. I'm gonna watch out for brussels. I will be grateful should you proceed this in future. Many people will likely be benefited from your writing. Cheers!

Hi there, everything is going fine here and ofcourse every one is sharing data, that's truly fine, keep up writing.

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

Spot on with this write-up, I truly think this site needs much more attention. I'll probably be returning to read more, thanks for the info!

Excellent post. I was checking continuously this blog and I'm impressed! Extremely helpful info specifically the last part :) I care for such information much. I was seeking this particular info for a long time. Thank you and good luck.

Hello there, I think your site could possibly be having internet browser compatibility problems. Whenever I take a look at your website in Safari, it looks fine however when opening in IE, it has some overlapping issues. I just wanted to give you a quick heads up! Other than that, fantastic site!

My partner and I stumbled over here from a different web address and thought I may as well check things out. I like what I see so now i am following you. Look forward to going over your web page for a second time.

Hello mates, its fantastic paragraph about educationand fully defined, keep it up all the time.

I all the time emailed this web site post page to all my contacts, since if like to read it next my links will too.

I'm not sure exactly why but this web site is loading incredibly slow for me. Is anyone else having this issue or is it a problem on my end? I'll check back later on and see if the problem still exists.

You should take part in a contest for one of the most useful sites on the internet. I'm going to highly recommend this web site!

Fantastic blog you have here but I was wondering if you knew of any community forums that cover the same topics discussed in this article? I'd really love to be a part of online community where I can get comments from other knowledgeable people that share the same interest. If you have any suggestions, please let me know. Many thanks!

Helpful info. Fortunate me I discovered your site unintentionally, and I'm stunned why this accident didn't happened in advance! I bookmarked it.

Excellent blog right here! Additionally your website loads up very fast! What web host are you the usage of? Can I get your associate link for your host? I want my site loaded up as quickly as yours lol

I'm really enjoying the design and layout of your blog. It's a very easy on the eyes which makes it much more pleasant for me to come here and visit more often. Did you hire out a developer to create your theme? Exceptional work!

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

I really like reading through an article that can make men and women think. Also, thanks for allowing for me to comment!

Hmm is anyone else having problems with the pictures on this blog loading? I'm trying to find out if its a problem on my end or if it's the blog. Any feed-back would be greatly appreciated.

Greetings! I know this is somewhat off topic but I was wondering if you knew where I could locate a captcha plugin for my comment form? I'm using the same blog platform as yours and I'm having trouble finding one? Thanks a lot!

When I originally commented I appear to have clicked on the -Notify me when new comments are added- checkbox and from now on every time a comment is added I recieve four emails with the exact same comment. Perhaps there is an easy method you are able to remove me from that service? Thanks!

What's up, just wanted to mention, I liked this post. It was helpful. Keep on posting!

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

Amazing! Its really remarkable article, I have got much clear idea concerning from this piece of writing.

I was suggested this web site by my cousin. I'm not sure whether this post is written by him as no one else know such detailed about my problem. You are wonderful! Thanks!

Pages

Add new comment