How to write a post on SudanJUG’s blog - كيف تكتب موضوع على مدونة موقع مستخدمي جافا

1 minute read

How to write a post on SudanJUG’s blog

Did you know sudanjug.github.io website is completly open source? and that anyone can post on the blog section? all you need is just a little bit knowledge in Git and Github, if you don’t you can use this guide along the steps.

The website is build using Jekyll a static sites generator written in Ruby, but you don’t have to know Ruby to publish a blog post, here’s how you can do that in just a few minutes:

  1. Write your post in Markdown format, if you need help with that you can use free online tools like StackEdit.
  2. Fork website’s Git repository here.
  3. Create a markdown file inside _posts directory.
  4. Name the file in the following pattern YYY-MM-DD-your-blog-title.markdown example 2021-02-01-moved-by-java.markdown.
  5. Place this snippet at the top of the file, then place your post Markdown text below it.
---
title:  "your-blog-title"
date:   2021-02-05 22:30:23 +0200
categories: blog sudanjug your-category
published: true
author:
  name     : your-name
  avatar   : your-avatar-link
  bio      : your-bio
  location : your-location
  links:
    - label: link-label
      icon: link-fontawesome-icon-name
      url: link-url
---
your-post-content-here
  1. Save your file in Git.
  2. Do a pull request
  3. A maintainer will review and accept your pull request.
  4. Your post is now live 🎉 see it here.

كيف تكتب موضوع على مدونة موقع مستخدمي جافا

هل تعلم أن هذا الموقع مفتوح المصدر بشكل كامل؟ وأنه يمكن لأي شخص نشر مواضيع على المدونة؟ كل ما تحتاجه هو القليل من المعرفة ب قيت و قيت هب، إذا كنت لا تملك المعرفة فيمكنك الاستعانة بهذا الدليل.

الموقع مصمم بتقنية جيكل مولد صفحات ساكنة بلغة برمجة روبي، ولكن لا تقلق لا تحتاج معرفة بلغة روبي لتتمكن من نشر موضوع، إليك كيفية فعل ذلك في دقائق قليلة:

  1. اكتب الموضوع بتنسيق مارك داون, إذا كنت لا تعرف فيمكنك استخدام خدمات مجانية لمساعدتك مثل ستاك ايدت.
  2. قم بنسخ الموقع من مستودع قيت هب.
  3. قم بإنشاء ملف جديد على المسار _posts.
  4. قم بتسمية الملف بالصيغة YYYY-MM-DD-your-blog-title.markdown
  5. قم بإضافة النص أدناه أعلى الملف, ومن بعده نص الموضوع
---
title:  "your-blog-title"
date:   2021-02-05 22:30:23 +0200
categories: blog sudanjug your-category
published: true
author:
  name     : your-name
  avatar   : your-avatar-link
  bio      : your-bio
  location : your-location
  links:
    - label: link-label
      icon: link-fontawesome-icon-name
      url: link-url
---
your-post-content-here
  1. قم بحفظ الملف على المستودع.
  2. قم بإنشاء طلب دمج
  3. سنقوم بمراجعة الطلب والموافقة عليه.
  4. تهانينا 🎉 اطلع على موضوعك هنا.

#SudanJUG #MovedbyJava

Updated:

Comments