Skip to content

chriskyfung/amp-affiliately-jekyll-theme

Repository files navigation

🎨 AMP Affiliately Jekyll Theme

This project offers an AMP-ready Jekyll theme for your blogs and websites.

Made with Jekyll GitHub last commit CodeQL Build and Deploy Jekyll to GitHub Pages Website Monitoring

πŸ‘€ Live Demo

AMP Affiliately Jekyll Theme

🌐 Demo Site β†—

🌈 Features

✨ New Features in v2.x.x

  • Support building Jekyll with ⚑ AMP Optimizer using Gulp πŸ₯€
  • Support minifying HTML and inline CSS using Gulp πŸ₯€
  • Improve accessibility πŸ‘©β€πŸ¦½
  • Improve the support for IE11
  • Support installing Jekyll-Scholar Plugin to format bibliographies
  • Set the sorting of post tags and categories in _config.yml
  • New block for including Table of Contents to a page/post
  • New post-processing for adding anchor links next to H2, H3, and H4 headings inside post content
  • New post-processing for inserting rel and target attributes to outbound links without plugins or dependencies
  • Support on-page sidebar options
  • Allow configuring Resources Widget globally in _config.yml
  • Support creating multiple Download buttons in the sidebar widget
  • Allow fully customizing copyright notice in _config.yml
  • (v2.7) Show/hide the GitHub Sponsors button in the navigation bar
  • (v2.7) Add support of social buttons for Twitter and Linkedin
  • (v2.8.0) Add AMP Optimizer logs to the Gulp task πŸ₯€

What is AMP ⚑

AMP stands for Accelerated Mobile Pages β†—, a Google-backed project designed as an open standard for any publisher to have pages load quickly on mobile devices.


Installation 🧰

There are various ways to install the theme:

1. Cloning the repository and updating settings

  1. Fork this repository and clone the forked repository.
  2. Update the _config.yml file as per your requirements.
  3. Add your posts to the _posts directory.
  4. Deploy to your server or Github Pages (read Deploying to GitHub Pages with GitHub Actions ).

2. Set up as a remote theme and updating settings

Read the procedures in the Config Guide β†—.


Configurations πŸ› οΈ

Enabling Third-Party Components 🧩

  • Read Google Services in the Config Guide β†—. For the following:

    • Google Analytics
    • Google Adsense
    • Google Custom Search Engine
    • Google Tag Manager

Disqus Comments in AMP πŸ’¬

  1. Download this HTML file β†— (last updated on 2024-01-13) and deploy it to another domain or subdomain.
  2. Copy the external URL link as the value of amp_disqus_url in _config.yml.
  3. Use amp_disqus_height to configure the height of <amp-iframe> if needed (default is 140).

Enabling Pagination for Blog Posts βͺ⏩

  1. Make a new folder named blog in your root directory.

  2. Create an empty HTML file in the new folder and name it index.html.

  3. Copy the following front matter to the HTML file:

    ---
    layout: blog-pagination
    ---

Enabling Lists of Categories and Tags πŸ“πŸ”–

  1. In your root directory, create a folder named category and tag, respectively.

  2. New a file and name it to index.html in your category and/or tag folder(s).

  3. Copy the following front matters to the corresponding index.html:

    • For category/index.html,

      ---
      layout: category-list
      title: List of Categories
      ---
    • For tag/index.html

      ---
      layout: tag-list
      title: List of Tags
      ---

Sidebar Widgets πŸ§™β€β™‚οΈ


Writing Posts πŸ“

You can write posts just as you would in Jekyll, the only difference being that AMP has some strict guidelines on including external content.

You cannot use Markdown format or normal HTML tags. AMP provides its own custom tags for images, videos, etc. For examples,

πŸ–Ό Images

Use the picture.html template to insert an image in the AMP format for automatically serving the image in the WebP format. The template also wraps the image with a <figure> tag with an optional caption element.

{% include picture.html img="welcome.jpg" height="400" width="800" %}

OPTIONS β†—

DEMOS - Image in AMP β†—

πŸ“Ή YouTube Videos

You need to include the following front-matter variable to enable YouTube embeds.

amp:
   youtube: true

To embed a single video, use the following tag to include the youtube.html template.

{% include youtube.html id="<YOUTUBE_VIDEO_UID>" title="Welcome to Watch this Video" %}

To embed a playlist, you need to set both the playlist ID and the ID of the first video within the playlist.

{% include youtube.html id="<YOUTUBE_VIDEO_UID>" \
   playlist="<YOUTUBE_PLAYLIST_UID>" title="Welcome to Watch this Video" %}

DEMOS - YouTube Embeds β†—

πŸ’» Codes

This theme supports syntax highlighting based on Rouge, which is the default highlighter in Jekyll 3 and above. All CSS styles for syntax highlighting are located in the amp-syntax-highlight.css under the _includes/css/ directory.

By default, this theme excludes the CSS styles for syntax highlighting. The AMP framework limits the total CSS styles up to 75,000 bytes per AMP page. This keeps lightweight and rendering fast.

To include the stylesheet on-demand, you need to add the following to your post's front matter:

css:
  syntax: true

DEMOS - Code Block β†—

πŸ“Œ Callout beta

A shortcode for creating a colored box, e.g. tips/memo.

{% capture label %}
   PUT YOUR MARKDOWN CONTENT HERE...
{% endcapture %}

{% include callout.html content=label %}

Front Matters


Using AMP Components ⚑

Some AMP components require you to specify external scripts before using them. You can specify these scripts in the head.html file in the includes directory after the already imported scripts and then use these components in any post.

See Full AMP Documentation β†— to learn more.

Validating Your AMP Pages 🐞

AMP provides a built-in validator to validate your pages. You can access this validator by opening the Developer Console in your browser and appending #development=1 to the end of any URL of your site, e.g. http://localhost:4000/#development=1.

If you have errors on your page, AMP will list those for you in the console. If no errors are on your page, you'll get a message "AMP Validation Successful" on the DevTools console.


Using Gulp to Run and Optimize Jekyll Build πŸ₯€

Run the following command to install Gulp, AMP Optimizer, and other node packages in the root directory of your project:

npm install

Build Jekyll locally and run the Gulp pipeline with the following command:

npm run build

Deploying to GitHub Pages with GitHub Actions πŸš€

This theme includes Jekyll plugins that are not in the whitelist of Github Pages. If you are going to deploy it to your Github Pages, you need to deploy it via Github Action. The Action workflow is configured in the /.github/workflows/deploy-jekyll.yml, which uses helaili/jekyll-action@v2 to build the Jekyll site, run AMP Optimizer and HTML minifier using Gulp, and deploy the optimized build to your gh-pages branch.


🀝 Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/chriskyfung/amp-affiliately-jekyll-theme/ β†—. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant β†— code of conduct.

To submit a pull request -

  1. Fork/clone the repository.
  2. Develop.
  3. Create a new branch from the master branch.
  4. Open a pull request on Github describing what was fixed or added.

πŸ’— Support Me

Would you like to buy me a coffee? I would really appreciate it if you could support me for the theme development.

Buy Me A Coffee

πŸ™ Acknowledgement

This project is developed based on the MIT-licensed Affiliates β†— Jekyll theme designed by Sal, WowThemes.net β†—.

βš–οΈ License

This theme is available as open-source under the terms of the MIT License β†— under the same upstream license.