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

You are so awesome! I do not think I've truly read something like this before. So good to discover someone with unique thoughts on this issue. Seriously.. thank you for starting this up. This website is something that is needed on the internet, someone with some originality!

Great beat ! I would like to apprentice while you amend your site, how could i subscribe for a blog website? The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast offered bright clear idea

It is really a nice and helpful piece of information. I'm happy that you shared this useful info with us. Please stay us up to date like this. Thanks for sharing.

Thank you, I've just been searching for information approximately this topic for a long time and yours is the greatest I have came upon till now. But, what concerning the conclusion? Are you sure concerning the supply?

Pretty section of content. I just stumbled upon your web site and in accession capital to claim that I acquire in fact loved account your blog posts. Any way I will be subscribing in your feeds and even I fulfillment you get admission to persistently rapidly.

Wow, superb blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, let alone the content!

Hello, i think that i saw you visited my blog thus i came to “return the favor”.I'm attempting to find things to improve my website!I suppose its ok to use some of your ideas!!

Hi, I would like to subscribe for this webpage to get most recent updates, thus where can i do it please help.

It's really a cool and useful piece of information. I am glad that you simply shared this helpful information with us. Please keep us up to date like this. Thank you for sharing.

My brother suggested I might like this blog. He was entirely right. This post truly made my day. You can not imagine simply how much time I had spent for this information! Thanks!

Awesome! Its actually amazing post, I have got much clear idea about from this paragraph.

It's an awesome article designed for all the online users; they will obtain advantage from it I am sure.

Oh my goodness! Awesome article dude! Thank you, However I am encountering issues with your RSS. I don't understand the reason why I am unable to subscribe to it. Is there anyone else getting identical RSS issues? Anyone who knows the solution can you kindly respond? Thanx!!

I do trust all of the ideas you have presented to your post. They are really convincing and can definitely work. Nonetheless, the posts are too brief for novices. May you please lengthen them a little from next time? Thank you for the post.

I'd like to find out more? I'd like to find out some additional information.

I every time spent my half an hour to read this weblog's articles or reviews daily along with a mug of coffee.

Hello there I am so happy I found your web site, I really found you by mistake, while I was searching on Bing for something else, Anyhow I am here now and would just like to say thanks a lot for a marvelous post and a all round enjoyable blog (I also love the theme/design), I don’t have time to browse it all at the moment but I have book-marked it and also added your RSS feeds, so when I have time I will be back to read a great deal more, Please do keep up the fantastic jo.

Thank you for the good writeup. It in truth was a amusement account it. Look complicated to more brought agreeable from you! By the way, how could we keep up a correspondence?

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'm really inspired with your writing skills as smartly as with the structure to your blog. Is that this a paid theme or did you customize it your self? Either way stay up the excellent high quality writing, it is rare to peer a great weblog like this one today..

Pretty nice post. I just stumbled upon your blog and wished to say that I have truly enjoyed browsing your blog posts. After all I'll be subscribing to your feed and I hope you write again soon!

Attractive element of content. I just stumbled upon your site and in accession capital to claim that I acquire actually loved account your weblog posts. Anyway I'll be subscribing to your feeds and even I achievement you get right of entry to constantly rapidly.

Wonderful site. Lots of helpful info here. I'm sending it to a few buddies ans additionally sharing in delicious. And of course, thank you to your effort!

It's actually a great and helpful piece of information. I'm happy that you just shared this helpful information with us. Please stay us informed like this. Thanks for sharing.

What's up mates, its wonderful article concerning educationand entirely explained, keep it up all the time.

When I originally commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get three emails with the same comment. Is there any way you can remove me from that service? Cheers!

Does your site have a contact page? I'm having a tough time locating it but, I'd like to send you an e-mail. I've got some recommendations for your blog you might be interested in hearing. Either way, great blog and I look forward to seeing it grow over time.

Hi, after reading this awesome piece of writing i am too glad to share my experience here with mates.

Your mode of describing the whole thing in this article is truly nice, all be capable of simply be aware of it, Thanks a lot.

Good day! I could have sworn I've been to this website before but after checking through some of the post I realized it's new to me. Nonetheless, I'm definitely delighted I found it and I'll be book-marking and checking back often!

Quality posts is the crucial to attract the users to pay a visit the site, that's what this web site is providing.

Do you have a spam problem on this website; I also am a blogger, and I was wondering your situation; we have developed some nice practices and we are looking to exchange methods with others, be sure to shoot me an email if interested.

Hi there superb website! Does running a blog like this take a great deal of work? I have virtually no knowledge of coding but I was hoping to start my own blog in the near future. Anyhow, should you have any suggestions or techniques for new blog owners please share. I understand this is off topic nevertheless I just wanted to ask. Appreciate it!

Definitely believe that which you said. Your favorite justification seemed to be on the web the easiest thing to be aware of. I say to you, I certainly get annoyed while people consider worries that they plainly don't know about. You managed to hit the nail upon the top and also defined out the whole thing without having side effect , people could take a signal. Will probably be back to get more. Thanks

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

Hi! I've been reading your site for some time now and finally got the bravery to go ahead and give you a shout out from Porter Texas! Just wanted to tell you keep up the good work!

Appreciate the recommendation. Will try it out.

I loved as much as you will receive carried out right here. The sketch is attractive, your authored material stylish. nonetheless, you command get bought an impatience over that you wish be delivering the following. unwell unquestionably come further formerly again since exactly the same nearly a lot often inside case you shield this hike.

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

Hi there, I do think your site could possibly be having internet browser compatibility issues. Whenever I look at your website in Safari, it looks fine however, if opening in IE, it has some overlapping issues. I simply wanted to give you a quick heads up! Apart from that, fantastic website!

It's amazing in favor of me to have a website, which is helpful in favor of my know-how. thanks admin

I like the helpful info you provide for your articles. I'll bookmark your blog and take a look at again right here frequently. I am somewhat certain I will be informed many new stuff proper right here! Best of luck for the next!

Excellent way of telling, and nice paragraph to get facts on the topic of my presentation subject matter, which i am going to present in school.

I am extremely impressed with your writing skills and also with the layout on your weblog. Is this a paid theme or did you customize it yourself? Anyway keep up the excellent quality writing, it's rare to see a great blog like this one nowadays.

Hmm it looks like your site ate my first comment (it was super long) so I guess I'll just sum it up what I submitted and say, I'm thoroughly enjoying your blog. I as well am an aspiring blog writer but I'm still new to the whole thing. Do you have any tips and hints for rookie blog writers? I'd really appreciate it.

Hi, I wish for to subscribe for this website to obtain hottest updates, thus where can i do it please help out.

Greetings I am so grateful I found your weblog, I really found you by error, while I was looking on Askjeeve for something else, Anyways I am here now and would just like to say many thanks for a remarkable post and a all round exciting blog (I also love the theme/design), I don't have time to browse it all at the minute but I have bookmarked it and also included your RSS feeds, so when I have time I will be back to read a lot more, Please do keep up the excellent job.

Pages

Add new comment