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

Heya i am for the first time here. I came across this board and I find It really useful & it helped me out much. I hope to give something back and help others like you aided me.

Thanks for any other informative website. Where else may just I am getting that type of info written in such an ideal method? I have a challenge that I'm simply now operating on, and I have been at the glance out for such information.

This design is steller! You definitely know how to keep a reader entertained. Between your wit and your videos, I was almost moved to start my own blog (well, almost...HaHa!) Great job. I really enjoyed what you had to say, and more than that, how you presented it. Too cool!

Do you have any video of that? I'd want to find out some additional information.

Excellent beat ! I wish to apprentice while you amend your site, how could i subscribe for a blog site? The account helped me a acceptable deal. I had been a little bit acquainted of this your broadcast offered bright clear concept

It's amazing to pay a visit this site and reading the views of all colleagues concerning this article, while I am also eager of getting experience.

I'm really enjoying the theme/design of your web site. Do you ever run into any internet browser compatibility problems? A small number of my blog visitors have complained about my blog not operating correctly in Explorer but looks great in Opera. Do you have any ideas to help fix this problem?

Excellent article. I certainly appreciate this site. Keep writing!

I'm really impressed with your writing skills as well as with the layout on your weblog. Is this a paid theme or did you modify it yourself? Either way keep up the nice quality writing, it is rare to see a great blog like this one nowadays.

Wonderful article! We are linking to this particularly great article on our website. Keep up the great writing.

Найдите свой идеальный вариант недвижимости в Объединенных Арабских Эмиратах. <a href=https://triumf-realty.ru>купить недвижимость в оаэ</a>- лучший сайт, на котором вы найдете все необходимое!

I've been browsing online more than three hours today, yet I never found any interesting article like yours. It's pretty worth enough for me. Personally, if all webmasters and bloggers made good content as you did, the internet will be much more useful than ever before.

It's very easy to find out any matter on net as compared to books, as I found this post at this web page.

It's wonderful that you are getting ideas from this piece of writing as well as from our discussion made at this time.

Hi there! I know this is somewhat off-topic however I needed to ask. Does operating a well-established website such as yours take a large amount of work? I am brand new to writing a blog however I do write in my journal everyday. I'd like to start a blog so I can easily share my personal experience and feelings online. Please let me know if you have any suggestions or tips for new aspiring blog owners. Appreciate it!

Wonderful blog! I found it while browsing on Yahoo News. Do you have any tips on how to get listed in Yahoo News? I've been trying for a while but I never seem to get there! Cheers

Fastidious replies in return of this issue with solid arguments and telling everything on the topic of that.

Great post. I was checking constantly this blog and I'm impressed! Very helpful info particularly the last part :) I care for such information much. I was seeking this particular info for a very long time. Thank you and best of luck.

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

Remarkable! Its actually remarkable article, I have got much clear idea on the topic of from this paragraph.

Wonderful beat ! I would like to apprentice whilst you amend your site, how could i subscribe for a weblog web site? The account aided me a applicable deal. I were tiny bit familiar of this your broadcast provided vibrant transparent idea

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! This is my 1st comment here so I just wanted to give a quick shout out and say I truly enjoy reading your posts. Can you suggest any other blogs/websites/forums that cover the same topics? Appreciate it!

Very energetic article, I enjoyed that bit. Will there be a part 2?

I know this if off topic but I'm looking into starting my own weblog and was wondering what all is required to get set up? I'm assuming having a blog like yours would cost a pretty penny? I'm not very internet smart so I'm not 100% certain. Any recommendations or advice would be greatly appreciated. Thank you

I am really loving the theme/design of your website. Do you ever run into any internet browser compatibility issues? A couple of my blog readers have complained about my website not working correctly in Explorer but looks great in Opera. Do you have any solutions to help fix this issue?

Just desire to say your article is as astounding. The clarity in your post is simply spectacular and i can assume you're an expert on this subject. Well with your permission allow me to grab your feed to keep updated with forthcoming post. Thanks a million and please carry on the gratifying work.

Hello, i think that i saw you visited my web site thus i came to “return the favor”.I am trying to find things to improve my website!I suppose its ok to use a few of your ideas!!

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

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

Great post. I am going through a few of these issues as well..

I was recommended this web site by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my difficulty. You're incredible! Thanks!

My brother recommended I might like this blog. He was entirely right. This put up actually made my day. You can not believe just how much time I had spent for this info! Thank you!

Heya i am for the primary time here. I came across this board and I find It really helpful & it helped me out a lot. I hope to present one thing again and help others such as you helped me.

Awesome! Its genuinely remarkable article, I have got much clear idea about from this paragraph.

I'm extremely impressed with your writing skills as well as with the layout on your weblog. Is this a paid theme or did you modify it yourself? Anyway keep up the nice quality writing, it's rare to see a nice blog like this one today.

Have you ever thought about adding a little bit more than just your articles? I mean, what you say is fundamental and everything. Nevertheless just imagine if you added some great visuals or video clips to give your posts more, "pop"! Your content is excellent but with images and video clips, this website could definitely be one of the best in its niche. Good blog!

What's up to all, the contents present at this web page are really awesome for people knowledge, well, keep up the good work fellows.

Actually when someone doesn't know afterward its up to other users that they will help, so here it occurs.

I know this if off topic but I'm looking into starting my own blog and was wondering what all is required to get set up? I'm assuming having a blog like yours would cost a pretty penny? I'm not very internet smart so I'm not 100% certain. Any tips or advice would be greatly appreciated. Thanks

I think that what you typed made a lot of sense. However, think about this, suppose you wrote a catchier post title? I mean, I don't want to tell you how to run your website, however what if you added a headline that grabbed people's attention? I mean %BLOG_TITLE% is a little vanilla. You could look at Yahoo's home page and watch how they write post headlines to get people interested. You might try adding a video or a pic or two to grab readers excited about what you've written. In my opinion, it would bring your blog a little bit more interesting.

Hello, this weekend is fastidious designed for me, for the reason that this point in time i am reading this wonderful educational paragraph here at my residence.

I visited multiple web pages except the audio feature for audio songs current at this website is truly marvelous.

I absolutely love your blog.. Excellent colors & theme. Did you develop this web site yourself? Please reply back as I'm attempting to create my own website and would love to know where you got this from or exactly what the theme is named. Many thanks!

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

Pages

Add new comment