diff --git a/environments/jobs/bin/after-start.sh b/environments/jobs/bin/after-start.sh index 5aa6bc9bfc..2c9df45fe9 100755 --- a/environments/jobs/bin/after-start.sh +++ b/environments/jobs/bin/after-start.sh @@ -40,7 +40,74 @@ create_page_if_missing() { create_page_if_missing 'post-a-job' 'Post a Job' create_page_if_missing 'remove-a-job' 'Remove a Job' create_page_if_missing 'feedback' 'Feedback' '

We are sorry, but we do not have any additional information about job postings other than what was posted to the site.

If you are writing about your already-submitted job posting, please be sure to provide the email address you specified when you filled out the job form.

' -create_page_if_missing 'faq' 'FAQ' '

General

What is this site?
This is a job board for WordPress-related jobs. Anyone can post a job opening or browse available positions.
How long do job postings stay up?
Job postings remain active for 21 days from the date of approval, after which they are automatically removed.
How much does it cost to post a job?
Posting a job is completely free.

For Employers

What kinds of jobs can I post?
Any job that is directly related to WordPress. This includes development, design, support, writing, translation, and more.
What is NOT acceptable for a job posting?
Jobs that are not related to WordPress, jobs that require payment from applicants, and jobs offering illegally low compensation are not acceptable.
How do I remove my job posting?
When you submit a job, you receive a job token. Use that token on the Remove a Job page to remove your listing at any time.
' +FAQ_CONTENT='

Frequently asked questions for job posters and job seekers.

+ +

Posting a job?

+ +
+
What types of jobs can be posted on this site?
+
Only WordPress-related jobs will be published, provided they meet the criteria below.
+ +
How much does it cost to post a job listing?
+
There is no fee for posting a job listing.
+ +
How long will it take for my job posting to appear on the site?
+
All job postings are moderated prior to appearing on the site. Moderation is performed by a team of volunteers. As such, it may take as long as 24-36 hours before a job posting is approved depending on various factors.
+ +
How long will my job posting be displayed?
+
Your job posting will be displayed for a period of 21 days, unless you remove it yourself using the job token you are provided or you contact us to have it removed earlier than that.
+ +
Who can I contact?
+
Contact us via our feedback form.
+ +
Can I post my advertisement, site, or cool new product?
+
No, this site is only for posting available jobs.
+ +
How do I remove a job posting?
+
Your job will automatically be removed from the site after 21 days. Upon successful submission of a job to the site, a unique job token is provided to the job poster. We emphatically implore job posters (multiple times) to make note of the job token. The token can be used on our Remove Job page to immediately close the job. If you do not have the job token, you can contact us to request closure of the job. You must submit your request from an email address you provided via the job submission form. It would also be helpful if you reference the job by link and/or title, especially if you have more than one job in the system. Note: Requests made via the contact page could take as much as 72 hours or longer to fulfill.
+ +
Why is X feature not available?
+
It could be. Just leave us feedback.
+ +
Why was my job posting not approved?
+
We moderate job posts on a few criteria, including: + +
+
+ +

Seeking a job?

+ +
+
Can I post my resume?
+
Not at this time.
+ +
How do I contact an employer?
+
Employers are expected to leave their contact information on each post.
+ +
Why does an employer not respond?
+
It is completely up to the employer to choose to respond or ignore a request for communication.
+
' +create_page_if_missing 'faq' 'FAQ' "$FAQ_CONTENT" # Create job categories. echo "Creating job categories..." diff --git a/jobs.wordpress.net/public_html/wp-content/themes/jobswp/inc/template-tags.php b/jobs.wordpress.net/public_html/wp-content/themes/jobswp/inc/template-tags.php index 92c3c3b155..e530249af3 100644 --- a/jobs.wordpress.net/public_html/wp-content/themes/jobswp/inc/template-tags.php +++ b/jobs.wordpress.net/public_html/wp-content/themes/jobswp/inc/template-tags.php @@ -172,22 +172,12 @@ function jobswp_the_attached_image() { * Prints HTML with meta information for the current post-date/time and author. */ function jobswp_posted_on() { - $time_string = ''; - if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) - $time_string .= ''; - - $time_string = sprintf( $time_string, - esc_attr( get_the_date( 'c' ) ), - esc_html( get_the_date() ), - esc_attr( get_the_modified_date( 'c' ) ), - esc_html( get_the_modified_date() ) - ); - - printf( __( 'Posted %1$s', 'jobswp' ), - sprintf( '%3$s', + printf( + __( 'Posted %1$s', 'jobswp' ), + sprintf( '', esc_url( get_permalink() ), - esc_attr( get_the_time() ), - $time_string + esc_attr( get_the_date( 'c' ) ), + esc_html( get_the_date() ) ) ); } diff --git a/jobs.wordpress.net/public_html/wp-content/themes/jobswp/style.css b/jobs.wordpress.net/public_html/wp-content/themes/jobswp/style.css index d2c837cd43..bf5802596f 100644 --- a/jobs.wordpress.net/public_html/wp-content/themes/jobswp/style.css +++ b/jobs.wordpress.net/public_html/wp-content/themes/jobswp/style.css @@ -1287,6 +1287,44 @@ input[type="submit"].submit-job { color: var(--color-charcoal-4); } +.page-faq .entry-content dd ul { + margin: var(--space-10) 0 0; + padding-left: var(--space-20); + list-style: disc; +} + +.page-faq .entry-content dd ul ul { + margin-top: 4px; + list-style: circle; +} + +.page-faq .entry-content dd li { + margin-bottom: 6px; + line-height: 1.6; +} + +.page-faq .entry-content dd a { + color: var(--color-blueberry-1); + text-decoration: underline; + text-decoration-thickness: 1px; + text-underline-offset: 2px; +} + +.page-faq .entry-content dd a:hover { + color: var(--color-deep-blueberry); +} + +.page-faq .entry-content > p:first-child { + font-size: var(--font-size-base); + color: var(--color-charcoal-4); + margin-bottom: var(--space-30); +} + +.page-faq .entry-content > p:first-child a { + color: var(--color-blueberry-1); + text-decoration: underline; +} + /* ============================================ Category & Search Archive Pages